forked from github/server
array-indexing error in error message discovered by stm.
This commit is contained in:
parent
42c5331f1b
commit
8f327f7165
1 changed files with 1 additions and 1 deletions
|
@ -244,7 +244,7 @@ read_ext_i(lua_State * L, bson_iterator * it, bson_type type)
|
||||||
else lua_pushnil(L);
|
else lua_pushnil(L);
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
log_error(("unknown oid %d %d %d\n", oid->ints[0], oid->ints[3], oid->ints[2]));
|
log_error(("unknown oid %d %d %d\n", oid->ints[0], oid->ints[1], oid->ints[2]));
|
||||||
lua_pushnil(L);
|
lua_pushnil(L);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue