https://issues.apache.org/bugzilla/show_bug.cgi?id=47549
--- Comment #3 from [email protected] 2009-08-03 14:12:47 PST --- And found a possible solution on a forum: .... Found the same issue here. Have debugged the problem with gdb. In function util.c:ap_timeout_parameter_parse the first errno checking is true, so it returns an error to its caller. The apr_strings.c:apr_strtoi64 function just above should clear the errno variable at the beginning, I think. The following patch against apr_strings.c works for me. diff -uNr /httpd-2.2.11/srclib/apr/strings/apr_strings.c.orig \ /httpd-2.2.11/srclib/apr/strings/apr_strings.c --- /httpd-2.2.11/srclib/apr/strings/apr_strings.c.orig 2006-08-03 +12:55:31.000000000 +0200 +++ /httpd-2.2.11/srclib/apr/strings/apr_strings.c 2009-01-14 +23:24:55.000000000 +0100 @@ -244,6 +244,7 @@ APR_DECLARE(apr_int64_t) apr_strtoi64(const char *nptr, char **endptr, int base) { + errno = 0; #ifdef APR_INT64_STRFN return APR_INT64_STRFN(nptr, endptr, base); #else Regards, Javi. -- Configure bugmail: https://issues.apache.org/bugzilla/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the assignee for the bug. --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
