]> granicus.if.org Git - apache/commitdiff
mod_lua: init cookie as NULL.
authorDaniel Gruno <humbedooh@apache.org>
Thu, 5 Sep 2013 08:59:10 +0000 (08:59 +0000)
committerDaniel Gruno <humbedooh@apache.org>
Thu, 5 Sep 2013 08:59:10 +0000 (08:59 +0000)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1520256 13f79535-47bb-0310-9956-ffa450edef68

modules/lua/lua_request.c

index 452f8ea6d51d7ed15648bd8b1192fdde23cc4da9..e1a2bc723683c851459e6287537b5d5c6d7a00cf 100644 (file)
@@ -1895,6 +1895,7 @@ static int lua_get_cookie(lua_State *L)
     const char *key, *cookie;
     request_rec *r = ap_lua_check_request_rec(L, 1);
     key = luaL_checkstring(L, 2);
+    cookie = NULL;
     ap_cookie_read(r, key, &cookie, 0);
     if (cookie != NULL) {
         lua_pushstring(L, cookie);