DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG 
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://issues.apache.org/bugzilla/show_bug.cgi?id=29455>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND 
INSERTED IN THE BUG DATABASE.

http://issues.apache.org/bugzilla/show_bug.cgi?id=29455

Patch for questionable http strtol use





------- Additional Comments From [EMAIL PROTECTED]  2004-06-09 12:32 -------
Not sure what could be done at run-time.  If apr_strtoff is used but not defined
in libapr, that'll cause link failures.  A compile-time check, e.g.

if (sizeof(apr_off_t) == sizeof(long))
   foo = strtol(...);
else
   foo = apr_strtoi64(...)

works pretty much the same.

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to