| > I've run into problem with httrack crashing for various
> requests in my batch download
> The abend is caused by call to assert
> after getting NULL from localtime on stat for
> rcm-images.amazon.com/images/G/01/associates/add-to-
cart.gif
Fixed in the current sources - thanks a lot for your
detailed report.
--- htslib.c.orig Sat Apr 23 11:11:35 2005
+++ htslib.c Sat Apr 23 11:14:19 2005
@@ -2633,11 +2633,9 @@
A=gmtime(&tt);
if (A==NULL)
A=localtime(&tt);
- if (A != NULL) {
time_rfc822(date, A);
return 1;
}
- }
return 0;
}
| |