From: Daniel Stenberg Date: Thu, 4 Aug 2011 21:22:48 +0000 (+0200) Subject: segfault fixed X-Git-Tag: curl-7_22_0~173 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=5eb2396cd;p=thirdparty%2Fcurl.git segfault fixed When using both -J and a single -O with multiple URLs, a missing init could cause badness. Bug: http://curl.haxx.se/mail/lib-2011-07/0126.html and http://bugzilla.redhat.com/723075 Reported by: Paul Howarth and Garrett Holmstrom --- diff --git a/src/main.c b/src/main.c index 6dcf333a55..eae45dea02 100644 --- a/src/main.c +++ b/src/main.c @@ -4898,6 +4898,7 @@ operate(struct Configurable *config, int argc, argv_item_t argv[]) outs.stream = stdout; outs.config = config; outs.bytes = 0; /* nothing written yet */ + outs.filename = NULL; /* save outfile pattern before expansion */ if(urlnode->outfile) {