Don't close a FILE * which we know is bogus.

This commit is contained in:
Dag-Erling Smørgrav 2003-08-29 15:54:12 +00:00
parent 16acf1a3f1
commit fd8f6d2269
1 changed files with 0 additions and 1 deletions

View File

@ -1006,7 +1006,6 @@ fetchStatFTP(struct url *url, struct url_stat *us, const char *flags)
f = _ftp_request(url, "STAT", us, _ftp_get_proxy(flags), flags);
if (f == NULL)
return (-1);
fclose(f);
return (0);
}