Skip to content

Commit

Permalink
deps: update llhttp to 1.0.1
Browse files Browse the repository at this point in the history
Fix callback error reporting

PR-URL: #24508
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
  • Loading branch information
indutny authored and rvagg committed Nov 28, 2018
1 parent 41f2e36 commit 230eb0d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion deps/llhttp/include/llhttp.h
Expand Up @@ -3,7 +3,7 @@

#define LLHTTP_VERSION_MAJOR 1
#define LLHTTP_VERSION_MINOR 0
#define LLHTTP_VERSION_PATCH 0
#define LLHTTP_VERSION_PATCH 1

#ifndef INCLUDE_LLHTTP_ITSELF_H_
#define INCLUDE_LLHTTP_ITSELF_H_
Expand Down
1 change: 1 addition & 0 deletions deps/llhttp/src/llhttp.c
Expand Up @@ -6037,6 +6037,7 @@ int llhttp__internal_execute(llhttp__internal_t* state, const char* p, const cha
if (error != 0) {
state->error = error;
state->error_pos = endp;
return error;
}
}

Expand Down

0 comments on commit 230eb0d

Please sign in to comment.