This can not be a runtime ixsue, because, in such a case, we would assert and abort before.
PR 59819.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@
1832317 13f79535-47bb-0310-9956-
ffa450edef68
case AP_EXPR_FUNC_STRING:
case AP_EXPR_FUNC_OP_UNARY:
case AP_EXPR_FUNC_OP_BINARY: {
- const struct expr_provider_single *prov;
+ const struct expr_provider_single *prov = NULL;
switch (parms->type) {
case AP_EXPR_FUNC_STRING:
prov = string_func_providers;
default:
ap_assert(0);
}
- while (prov->func) {
+ while (prov && prov->func) {
int match;
if (parms->type == AP_EXPR_FUNC_OP_UNARY)
match = !strcmp(prov->name, parms->name);