X-Git-Url: https://git.ucc.asn.au/?a=blobdiff_plain;ds=sidebyside;f=server%2Ffastcgi.c;h=89386f35165c7d9e01cea92a81a8f17ccc4dd4a8;hb=c78aae4af28df47f11bf41537cc6945ddba3e27d;hp=67f7de3f2903074435578a69bdd6897e7151fd4e;hpb=b7150f722995ea6807182da24653a15693a82698;p=matches%2FMCTX3420.git diff --git a/server/fastcgi.c b/server/fastcgi.c index 67f7de3..89386f3 100644 --- a/server/fastcgi.c +++ b/server/fastcgi.c @@ -227,7 +227,16 @@ bool FCGI_ParseRequest(FCGIContext *context, char *params, FCGIValue values[], s switch(FCGI_TYPE(val->flags)) { case FCGI_BOOL_T: - *((bool*) val->value) = true; + if (!*value) //No value: Default true + *((bool*) val->value) = true; + else { + *((bool*) val->value) = !!(strtol(value, &ptr, 10)); + if (*ptr) { + snprintf(buf, BUFSIZ, "Expected bool for '%s' but got '%s'", key, value); + FCGI_RejectJSON(context, buf); + return false; + } + } break; case FCGI_INT_T: case FCGI_LONG_T: { long parsed = strtol(value, &ptr, 10);