| 2525 | } |
| 2526 | |
| 2527 | AP_DECLARE(void *) ap_retained_data_create(const char *key, apr_size_t size) |
| 2528 | { |
| 2529 | void *retained; |
| 2530 | |
| 2531 | retained = apr_pcalloc(ap_pglobal, size); |
| 2532 | apr_pool_userdata_set((const void *)retained, key, apr_pool_cleanup_null, ap_pglobal); |
| 2533 | return retained; |
| 2534 | } |
| 2535 | |
| 2536 | static int count_directives_sub(const char *directive, ap_directive_t *current) |
| 2537 | { |
no outgoing calls
no test coverage detected