diff options
-rw-r--r-- | src/c/http.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/c/http.c b/src/c/http.c index 64e6ef1e..7ba06871 100644 --- a/src/c/http.c +++ b/src/c/http.c @@ -162,7 +162,8 @@ static void *worker(void *data) { headers = s + 2; method = s = buf; - if (!strsep(&s, " ")) { + strsep(&s, " "); + if (!s) { fprintf(stderr, "No first space in HTTP command\n"); close(sock); goto done; |