its logically impossible for this to be null, we are looping through an array on the stack
This commit is contained in:
parent
84886942d2
commit
a933882e7e
|
@ -693,8 +693,6 @@ SCGI_DECLARE(scgi_status_t) scgi_parse(scgi_socket_t sock, scgi_handle_t *handle
|
||||||
while(p < end) {
|
while(p < end) {
|
||||||
next_str(p, e);
|
next_str(p, e);
|
||||||
|
|
||||||
if (!e) break;
|
|
||||||
|
|
||||||
if (!loops++) {
|
if (!loops++) {
|
||||||
if (!strcasecmp(p, "CONTENT_LENGTH") && e) {
|
if (!strcasecmp(p, "CONTENT_LENGTH") && e) {
|
||||||
clen = atoi(e);
|
clen = atoi(e);
|
||||||
|
|
Loading…
Reference in New Issue