1
0
mirror of https://github.com/apache/httpd.git synced 2025-08-05 16:55:50 +03:00

mod_lua: Fix Windows compatibility issues and remove an unused variable. Thanks, Gregg!

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1422072 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Daniel Gruno
2012-12-14 20:44:41 +00:00
parent 74708ea8f3
commit ff81e58f05
2 changed files with 11 additions and 10 deletions

View File

@@ -224,7 +224,7 @@ static int req_parsebody(lua_State *L)
char *buffer, *key, *filename;
char *start = 0, *end = 0, *crlf = 0;
const char *data;
int i, z;
int i;
size_t vlen = 0;
size_t len = 0;
if (lua_read_body(r, &data, (apr_off_t*) &size) != OK) {