| 2681 | #undef CHECK_OVERFLOW |
| 2682 | |
| 2683 | AP_DECLARE(int) ap_parse_strict_length(apr_off_t *len, const char *str) |
| 2684 | { |
| 2685 | char *end; |
| 2686 | |
| 2687 | return (apr_isdigit(*str) |
| 2688 | && apr_strtoff(len, str, &end, 10) == APR_SUCCESS |
| 2689 | && *end == '\0'); |
| 2690 | } |
| 2691 | |
| 2692 | /** |
| 2693 | * Determine if a request has a request body or not. |
no outgoing calls
no test coverage detected