aboutsummaryrefslogtreecommitdiff
path: root/findutils
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
parent26df70a823dd0c8c451776c9b86f68b6d4bc3c75 (diff)
downloadbusybox-c5408fe7f7ed809f11dd406a403071715cc9bd06.tar.gz
Fix segfault when cleaning up
Diffstat (limited to 'findutils')
-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)
if (argv[optind] == NULL)
bb_show_usage();
else {
- pattern_head = llist_add_to(pattern_head, argv[optind]);
+ pattern_head = llist_add_to(pattern_head, strdup(argv[optind]));
optind++;
}
}