X-Git-Url: https://code.citadel.org/?a=blobdiff_plain;f=webcit%2Fparamhandling.c;h=5c87c578c822886bfb953702bfe9880fb01ae22e;hb=398aa7568474978ddba433703034284b2faacb4b;hp=d3c9507b2aa7a6b91fbc87639e50c8139353889d;hpb=d8602d812c63f4dcbe6b5ca5865cc9e79bc21efd;p=citadel.git diff --git a/webcit/paramhandling.c b/webcit/paramhandling.c index d3c9507b2..5c87c578c 100644 --- a/webcit/paramhandling.c +++ b/webcit/paramhandling.c @@ -52,7 +52,7 @@ void ParseURLParams(StrBuf *url) keylen = aptr - up - 1; /* -1 -> '=' */ if(keylen > sizeof(u->url_key)) { syslog(1, "invalid url_key"); - continue; + return; } u = (urlcontent *) malloc(sizeof(urlcontent)); @@ -61,7 +61,7 @@ void ParseURLParams(StrBuf *url) if (keylen < 0) { syslog(1, "invalid url_key"); free(u); - continue; + return; } if (strncmp(u->url_key, "__", 2) != 0)