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

remove redundant code

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1469751 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Daniel Gruno
2013-04-19 09:04:52 +00:00
parent 8049067196
commit a433e37ec8

View File

@@ -1670,7 +1670,6 @@ static int lua_ivm_get(lua_State *L) {
apr_pool_userdata_get((void **)&object, raw_key, r->server->process->pool);
if (object) {
if (object->type == LUA_TBOOLEAN) lua_pushboolean(L, object->number);
else if (object->type == LUA_TBOOLEAN) lua_pushboolean(L, object->number);
else if (object->type == LUA_TNUMBER) lua_pushnumber(L, object->number);
else if (object->type == LUA_TSTRING) lua_pushlstring(L, object->string, object->size);
return 1;