Patch from Tito to fix memory leak upon error.
authorGlenn L McGrath <bug1@ihug.co.nz>
Wed, 11 Aug 2004 03:50:30 +0000 (03:50 -0000)
committerGlenn L McGrath <bug1@ihug.co.nz>
Wed, 11 Aug 2004 03:50:30 +0000 (03:50 -0000)
libbb/xreadlink.c

index 21a657d..49823fa 100644 (file)
@@ -24,8 +24,9 @@ extern char *xreadlink(const char *path)
                buf = xrealloc(buf, bufsize += GROWBY);
                readsize = readlink(path, buf, bufsize); /* 1st try */
                if (readsize == -1) {
-                   bb_perror_msg("%s", path);
-                   return NULL;
+                       bb_perror_msg("%s", path);
+                       free(buf);
+                       return NULL;
                }
        }
        while (bufsize < readsize + 1);