| 2066 | } |
| 2067 | |
| 2068 | AP_DECLARE(char *) ap_escape_path_segment(apr_pool_t *p, const char *segment) |
| 2069 | { |
| 2070 | return ap_escape_path_segment_buffer(apr_palloc(p, 3 * strlen(segment) + 1), segment); |
| 2071 | } |
| 2072 | |
| 2073 | AP_DECLARE(char *) ap_os_escape_path(apr_pool_t *p, const char *path, int partial) |
| 2074 | { |
no test coverage detected