aboutsummaryrefslogtreecommitdiff
path: root/findutils/grep.c
diff options
context:
space:
mode:
authorGlenn L McGrath <bug1@ihug.co.nz>2003-04-27 02:22:01 +0000
committerGlenn L McGrath <bug1@ihug.co.nz>2003-04-27 02:22:01 +0000
commitc5408fe7f7ed809f11dd406a403071715cc9bd06 (patch)
tree829c5e060e2befdd58350f9ae3874e00f91a2977 /findutils/grep.c
parent26df70a823dd0c8c451776c9b86f68b6d4bc3c75 (diff)
downloadbusybox-w32-c5408fe7f7ed809f11dd406a403071715cc9bd06.tar.gz
busybox-w32-c5408fe7f7ed809f11dd406a403071715cc9bd06.tar.bz2
busybox-w32-c5408fe7f7ed809f11dd406a403071715cc9bd06.zip
Fix segfault when cleaning up
Diffstat (limited to 'findutils/grep.c')
-rw-r--r--findutils/grep.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/findutils/grep.c b/findutils/grep.c
index 908f39123..e26a8d5ad 100644
--- a/findutils/grep.c
+++ b/findutils/grep.c
@@ -343,7 +343,7 @@ extern int grep_main(int argc, char **argv)
343 if (argv[optind] == NULL) 343 if (argv[optind] == NULL)
344 bb_show_usage(); 344 bb_show_usage();
345 else { 345 else {
346 pattern_head = llist_add_to(pattern_head, argv[optind]); 346 pattern_head = llist_add_to(pattern_head, strdup(argv[optind]));
347 optind++; 347 optind++;
348 } 348 }
349 } 349 }