This commit is contained in:
Daniel Stenberg 2000-12-04 12:21:18 +00:00
Π ΠΎΠ΄ΠΈΡ‚Π΅Π»ΡŒ 52707f9590
ΠšΠΎΠΌΠΌΠΈΡ‚ ca8196a4dc
1 ΠΈΠ·ΠΌΠ΅Π½Ρ‘Π½Π½Ρ‹Ρ… Ρ„Π°ΠΉΠ»ΠΎΠ²: 5 Π΄ΠΎΠ±Π°Π²Π»Π΅Π½ΠΈΠΉ ΠΈ 2 ΡƒΠ΄Π°Π»Π΅Π½ΠΈΠΉ

ΠŸΡ€ΠΎΡΠΌΠΎΡ‚Ρ€Π΅Ρ‚ΡŒ Ρ„Π°ΠΉΠ»

@ -1473,9 +1473,9 @@ operate(struct Configurable *config, int argc, char *argv[])
#endif
}
for (i = 0; (url = next_url(urls)); ++i) {
if (outfiles) {
if (config->outfile) {
free(config->outfile);
config->outfile = outfiles;
config->outfile = strdup(outfiles);
}
if (config->outfile || config->remotefile) {
@ -1757,6 +1757,9 @@ operate(struct Configurable *config, int argc, char *argv[])
free(url);
}
if(outfiles)
free(outfiles);
#ifdef MIME_SEPARATORS
if (separator)
printf("--%s--\n", MIMEseparator);