1
0
mirror of https://github.com/apache/httpd.git synced 2025-08-04 05:42:12 +03:00

mod_lua: stop complaining

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1588807 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Daniel Gruno
2014-04-20 17:56:10 +00:00
parent 360c8f35f5
commit 3a7ef57c8d

View File

@@ -318,7 +318,7 @@ static int req_parseargs(lua_State *L)
}
/* ap_lua_binstrstr: Binary strstr function for uploaded data with NULL bytes */
char* ap_lua_binstrstr (const char * haystack, size_t hsize, const char* needle, size_t nsize)
static char* ap_lua_binstrstr (const char * haystack, size_t hsize, const char* needle, size_t nsize)
{
if (haystack == NULL) return NULL;
if (needle == NULL) return NULL;