* Parse .. so we don't compromise security */
| 600 | * Parse .. so we don't compromise security |
| 601 | */ |
| 602 | AP_DECLARE(void) ap_getparents(char *name) |
| 603 | { |
| 604 | if (!ap_normalize_path(name, AP_NORMALIZE_NOT_ABOVE_ROOT | |
| 605 | AP_NORMALIZE_ALLOW_RELATIVE)) { |
| 606 | name[0] = '\0'; |
| 607 | } |
| 608 | } |
| 609 | |
| 610 | AP_DECLARE(void) ap_no2slash_ex(char *name, int is_fs_path) |
| 611 | { |
nothing calls this directly
no test coverage detected