提交 6fbcb192 编写于 作者: A antirez

luaRedisGenericCommand() cached argv handling simplified.

As discussed in issue #1945.
上级 8375a6d0
...@@ -222,10 +222,7 @@ int luaRedisGenericCommand(lua_State *lua, int raise_error) { ...@@ -222,10 +222,7 @@ int luaRedisGenericCommand(lua_State *lua, int raise_error) {
} }
/* Build the arguments vector */ /* Build the arguments vector */
if (!argv) { if (argv_size < argc) {
argv = zmalloc(sizeof(robj*)*argc);
argv_size = argc;
} else if (argv_size < argc) {
argv = zrealloc(argv,sizeof(robj*)*argc); argv = zrealloc(argv,sizeof(robj*)*argc);
argv_size = argc; argv_size = argc;
} }
...@@ -402,6 +399,7 @@ cleanup: ...@@ -402,6 +399,7 @@ cleanup:
if (c->argv != argv) { if (c->argv != argv) {
zfree(c->argv); zfree(c->argv);
argv = NULL; argv = NULL;
argv_size = 0;
} }
if (raise_error) { if (raise_error) {
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册