aboutsummaryrefslogtreecommitdiff
path: root/archival/dpkg.c
diff options
context:
space:
mode:
authorGlenn L McGrath <bug1@ihug.co.nz>2001-09-22 03:24:07 +0000
committerGlenn L McGrath <bug1@ihug.co.nz>2001-09-22 03:24:07 +0000
commitb8f5adb64f1a9af77c463eef7e31d80def13ef4b (patch)
tree8c2b6209182e2a32cb87613de20be3bbca9a65c3 /archival/dpkg.c
parent3be34309e3274cd6996e4257dd3df7307c8dee3d (diff)
downloadbusybox-b8f5adb64f1a9af77c463eef7e31d80def13ef4b.tar.gz
Dont free everytime getline() is used, fix from Stefan Soucek
Diffstat (limited to 'archival/dpkg.c')
-rw-r--r--archival/dpkg.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/archival/dpkg.c b/archival/dpkg.c
index 437b50d3b..a97a5a29f 100644
--- a/archival/dpkg.c
+++ b/archival/dpkg.c
@@ -1042,11 +1042,10 @@ char **create_list(const char *filename)
*last_char = '\0';
}
file_list[count] = xstrdup(line);
- free(line);
count++;
- length = 0;
}
fclose(list_stream);
+ free(line);
if (count == 0) {
return(NULL);