]> Zhao Yanbai Git Server - minix.git/commitdiff
test24: fix memory leak. 05/1205/1
authorThomas Cort <tcort@minix3.org>
Tue, 14 Jan 2014 03:22:25 +0000 (22:22 -0500)
committerThomas Cort <tcort@minix3.org>
Tue, 14 Jan 2014 03:22:25 +0000 (22:22 -0500)
Local variable 'name' was allocated but not freed. Add the free().

Change-Id: I3d16486fc17bd40d54619d80e5b1fdfe96f1be26

test/test24.c

index f20c3b983a208acacb4e67d1f1972ba96e74f101..0ade27ade7145f6520af8778afaaa1c61ee39523 100644 (file)
@@ -243,6 +243,7 @@ void test24b()
   if ((dep2 = readdir(dirp[2])) == DIRENT0) e(25);     /* can't effect 2 */
   if (strcmp(dep2->d_name, name) == 0) e(26);  /* Must be next */
   if (closedir(dirp[2]) != 0) e(27);
+  free(name);
 }
 
 void test24c()