Ver Fonte

Detail: bad assertion in 'luaM_free_'

Roberto Ierusalimschy há 6 anos atrás
pai
commit
ea1322ef54
1 ficheiros alterados com 1 adições e 1 exclusões
  1. 1 1
      lmem.c

+ 1 - 1
lmem.c

@@ -108,7 +108,7 @@ l_noret luaM_toobig (lua_State *L) {
 */
 void luaM_free_ (lua_State *L, void *block, size_t osize) {
   global_State *g = G(L);
-  lua_assert((block == 0) == (block == NULL));
+  lua_assert((osize == 0) == (block == NULL));
   (*g->frealloc)(g->ud, block, osize, 0);
   g->GCdebt -= osize;
 }