Fix memory leak eel 4.99.5 5.0.0 5.0.1 5.0.2 5.0.3 5.1.0 eel/4.99.5 eel/5.0.0 eel/5.0.1 eel/5.0.2 eel/5.0.3 eel/5.1.0 eel_4.99.5 eel_5.0.0 eel_5.0.1 eel_5.0.2 eel_5.0.3 eel_5.1.0
authorRomain Forlot <romain.forlot@iot.bzh>
Fri, 8 Dec 2017 19:11:34 +0000 (20:11 +0100)
committerRomain Forlot <romain.forlot@iot.bzh>
Tue, 19 Dec 2017 15:38:38 +0000 (16:38 +0100)
Change-Id: Ia02a639ea9210ed7961a88c91ff9e4cd1a732416
Signed-off-by: Romain Forlot <romain.forlot@iot.bzh>
filescan-utils.c

index a20179c..8b70d69 100644 (file)
@@ -88,9 +88,10 @@ PUBLIC json_object* ScanForConfig (const char* searchPath, CtlScanDirModeT mode,
     }
     if (count == 0) {
         json_object_put (responseJ);
+        free(dirList);
         return NULL;
     }
-    
+    free(dirList);
     return (responseJ);
 }