diff options
author | Romain Forlot <romain.forlot@iot.bzh> | 2017-12-08 20:11:34 +0100 |
---|---|---|
committer | Romain Forlot <romain.forlot@iot.bzh> | 2018-12-13 14:12:02 +0100 |
commit | 714907df681a87be7af4b17cd540e50ebf82aa8a (patch) | |
tree | 6b5a93777981abfb66a30e9c49f26e38be47a966 | |
parent | 2e3e379bb25ac77f6b4faf58180abdbebe4e059a (diff) |
Fix memory leak
Change-Id: Ia02a639ea9210ed7961a88c91ff9e4cd1a732416
Signed-off-by: Romain Forlot <romain.forlot@iot.bzh>
-rw-r--r-- | filescan-utils.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/filescan-utils.c b/filescan-utils.c index a20179c..8b70d69 100644 --- a/filescan-utils.c +++ b/filescan-utils.c @@ -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); } |