aboutsummaryrefslogtreecommitdiff
path: root/editors/patch.c
diff options
context:
space:
mode:
authorDenis Vlasenko <vda.linux@googlemail.com>2006-12-17 00:33:29 +0000
committerDenis Vlasenko <vda.linux@googlemail.com>2006-12-17 00:33:29 +0000
commitf7583d89b07f8dd4510d5383d9ce17ac4f8e699f (patch)
tree14e80ca0d88626a51d25bac4a15d10d4fad52d01 /editors/patch.c
parent9f739445cd3deddd0343c3a8d5a981ede26bef30 (diff)
downloadbusybox-f7583d89b07f8dd4510d5383d9ce17ac4f8e699f.tar.gz
patch: fix double-free (bug 1120)
Diffstat (limited to 'editors/patch.c')
-rw-r--r--editors/patch.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/editors/patch.c b/editors/patch.c
index 8e885d06e..d13b06a83 100644
--- a/editors/patch.c
+++ b/editors/patch.c
@@ -214,6 +214,7 @@ int patch_main(int argc, char **argv)
bb_error_msg("hunk #%d FAILED at %d", hunk_count, hunk_offset_start);
hunk_error++;
free(patch_line);
+ patch_line = NULL;
break;
}
free(src_line);