diff options
Diffstat (limited to 'lmem.c')
-rw-r--r-- | lmem.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | ** $Id: lmem.c,v 1.75 2010/04/02 14:37:41 roberto Exp roberto $ | 2 | ** $Id: lmem.c,v 1.76 2010/04/29 17:33:17 roberto Exp roberto $ |
3 | ** Interface to Memory Manager | 3 | ** Interface to Memory Manager |
4 | ** See Copyright Notice in lua.h | 4 | ** See Copyright Notice in lua.h |
5 | */ | 5 | */ |
@@ -95,7 +95,7 @@ void *luaM_realloc_ (lua_State *L, void *block, size_t osize, size_t nsize) { | |||
95 | } | 95 | } |
96 | lua_assert((nsize == 0) == (newblock == NULL)); | 96 | lua_assert((nsize == 0) == (newblock == NULL)); |
97 | g->totalbytes = (g->totalbytes - realosize) + nsize; | 97 | g->totalbytes = (g->totalbytes - realosize) + nsize; |
98 | if (!gcstopped(g)) /* new object? */ | 98 | if (!gcstopped(g)) |
99 | g->GCdebt += nsize; /* give some credit to garbage collector */ | 99 | g->GCdebt += nsize; /* give some credit to garbage collector */ |
100 | #if defined(TRACEMEM) | 100 | #if defined(TRACEMEM) |
101 | { /* auxiliar patch to monitor garbage collection. | 101 | { /* auxiliar patch to monitor garbage collection. |