]> jspc29.x-matter.uni-frankfurt.de Git - daqdata.git/commitdiff
JAM: fix memory leak in daq_disk demon
authorhadaq <hadaq>
Mon, 23 Apr 2012 13:32:37 +0000 (13:32 +0000)
committerhadaq <hadaq>
Mon, 23 Apr 2012 13:32:37 +0000 (13:32 +0000)
disks/disks.c

index 675c187952afd77cdf67bf45c6bb933f367faf0f..a767877c22594549d6713a67f19c3280b3a58e68 100644 (file)
@@ -177,9 +177,10 @@ static int checkDisks(TheArgs *theArgs)
   FILE* stream = popen("/bin/df -m", "r");
 
   char **array;
+  void* base;
   array = malloc( sizeof(char *) * BUFLEN );
   assert(array != NULL);
-
+  base=array;
   count = 0;
 
   while (1)
@@ -239,6 +240,8 @@ static int checkDisks(TheArgs *theArgs)
     }
   }
 
+  free(base);
+
   return 0;
 }