wget-1.9.1
in file log.c, in function log_close() :
---------------------
 if (logfp)
   fclose (logfp);
---------------------
closes the logfile file descriptor even if it is stderr !
i think we should test like this :
 if (logfp && logfp != stderr)



Reply via email to