Skip to content

Commit

Permalink
http: remove a needless validation
Browse files Browse the repository at this point in the history
Body may not be sent even if 100-CONTINUE isn't waited.
  • Loading branch information
kou committed Jan 26, 2015
1 parent 7836472 commit 36a38d8
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions src/groonga.c
Original file line number Diff line number Diff line change
Expand Up @@ -1136,10 +1136,6 @@ do_htreq_post_parse_header(grn_ctx *ctx,
return GRN_FALSE;
}

if (!header->have_100_continue && current == end) {
return GRN_FALSE;
}

if (current == end) {
header->body_start = NULL;
} else {
Expand Down

0 comments on commit 36a38d8

Please sign in to comment.