Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.busybox.net/busybox.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGlenn L McGrath <bug1@ihug.co.nz>2004-08-11 07:50:30 +0400
committerGlenn L McGrath <bug1@ihug.co.nz>2004-08-11 07:50:30 +0400
commit18bbd9bf3b222eb85600f895c9a1f7dcb5f8ccef (patch)
tree30fdc91297c3c01324165ebc756e4ae31093dfab /libbb/xreadlink.c
parent73db8be80a2bca50e0d29a162f5d431f70e227c8 (diff)
Patch from Tito to fix memory leak upon error.
Diffstat (limited to 'libbb/xreadlink.c')
-rw-r--r--libbb/xreadlink.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/libbb/xreadlink.c b/libbb/xreadlink.c
index 21a657dfc..49823fa7f 100644
--- a/libbb/xreadlink.c
+++ b/libbb/xreadlink.c
@@ -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);