| 3121 | } |
| 3122 | |
| 3123 | AP_DECLARE(apr_status_t) ap_varbuf_regsub(struct ap_varbuf *vb, |
| 3124 | const char *input, |
| 3125 | const char *source, |
| 3126 | apr_size_t nmatch, |
| 3127 | ap_regmatch_t pmatch[], |
| 3128 | apr_size_t maxlen) |
| 3129 | { |
| 3130 | return regsub_core(NULL, NULL, vb, input, source, nmatch, pmatch, maxlen); |
| 3131 | } |
| 3132 | |
| 3133 | static const char * const oom_message = "[crit] Memory allocation failed, " |
| 3134 | "aborting process." APR_EOL_STR; |
no test coverage detected