Multi bulk to Lua table now working

This commit is contained in:
antirez 2011-05-01 15:48:26 +02:00
parent 3791000f15
commit 10a6da7af4

View File

@ -98,17 +98,15 @@ char *redisProtocolToLuaType_MultiBulk(lua_State *lua, char *reply) {
long long mbulklen; long long mbulklen;
int j = 0; int j = 0;
printf("--%s-- (%d)\n", reply,(int)(p-reply-1));
string2ll(reply+1,p-reply-1,&mbulklen); string2ll(reply+1,p-reply-1,&mbulklen);
p += 2; p += 2;
if (mbulklen == -1) { if (mbulklen == -1) {
lua_pushnil(lua); lua_pushnil(lua);
return p; return p;
} }
printf("BL: %lld\n", mbulklen);
lua_newtable(lua); lua_newtable(lua);
for (j = 0; j < mbulklen; j++) { for (j = 0; j < mbulklen; j++) {
lua_pushnumber(lua,j); lua_pushnumber(lua,j+1);
p = redisProtocolToLuaType(lua,p); p = redisProtocolToLuaType(lua,p);
lua_settable(lua,-3); lua_settable(lua,-3);
} }