1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
|
1) If parsing fails, immediately return an error response
without dispatching the ostensibly-upcoming JSON API.
*/
cgi_set_content_type(json_guess_content_type());
}
#endif /* FOSSIL_ENABLE_JSON */
else{
blob_read_from_cgi(&g.cgiIn, len);
}
}
}
/*
** Decode POST parameter information in the cgiIn content, if any.
*/
|
|
>
>
|
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
|
1) If parsing fails, immediately return an error response
without dispatching the ostensibly-upcoming JSON API.
*/
cgi_set_content_type(json_guess_content_type());
}
#endif /* FOSSIL_ENABLE_JSON */
else{
if( blob_read_from_cgi(&g.cgiIn, len)!=len ){
malformed_request("CGI content-length mismatch");
}
}
}
}
/*
** Decode POST parameter information in the cgiIn content, if any.
*/
|