Browse Source

[DFS] fix the free issue in fd_is_open

Bernard Xiong 7 years ago
parent
commit
5ec1046ca9
1 changed files with 2 additions and 1 deletions
  1. 2 1
      components/dfs/src/dfs.c

+ 2 - 1
components/dfs/src/dfs.c

@@ -20,6 +20,7 @@
  * Change Logs:
  * Date           Author       Notes
  * 2005-02-22     Bernard      The first version.
+ * 2017-12-11     Bernard      Use rt_free to instead of free in fd_is_open().
  */
 
 #include <dfs.h>
@@ -219,7 +220,7 @@ int fd_is_open(const char *pathname)
         if (fs == NULL)
         {
             /* can't find mounted file system */
-            free(fullpath);
+            rt_free(fullpath);
 
             return -1;
         }