From 211ada49263b51a8813a51f29e914c7e5909319c Mon Sep 17 00:00:00 2001 From: Xinchen Hui Date: Sat, 18 Jul 2015 15:39:53 +0800 Subject: [PATCH] Attempt to fix segfault with delim --- routes/yaf_route_map.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/routes/yaf_route_map.c b/routes/yaf_route_map.c index 358617cc..ef6e7a4b 100644 --- a/routes/yaf_route_map.c +++ b/routes/yaf_route_map.c @@ -107,6 +107,8 @@ int yaf_route_map_route(yaf_route_t *route, yaf_request_t *request TSRMLS_DC) { } else { query_str = NULL; } + } else { + query_str = NULL; } }