From a9f90464e67247bcbdc67eef1855f16e0ef29f2b Mon Sep 17 00:00:00 2001 From: Unbit Date: Mon, 11 Mar 2013 12:44:22 +0100 Subject: [PATCH] fixed routing condition bug --- core/routing.c | 1 + 1 file changed, 1 insertion(+) diff --git a/core/routing.c b/core/routing.c index c07f5704..e761a944 100644 --- a/core/routing.c +++ b/core/routing.c @@ -190,6 +190,7 @@ static void *uwsgi_route_get_condition_func(char *name) { if (!strcmp(urc->name, name)) { return urc->func; } + urc = urc->next; } return NULL; }