mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-08-14 18:48:13 -07:00
bug fix - f59b241315
This commit is contained in:
parent
f34c746471
commit
bd4a6b82b3
1 changed files with 2 additions and 2 deletions
|
@ -1,5 +1,5 @@
|
|||
/*
|
||||
** $Id: lgc.c,v 2.140 2013/03/16 21:10:18 roberto Exp $
|
||||
** $Id: lgc.c,v 2.140 2013/04/26 18:22:05 roberto Exp $
|
||||
** Garbage Collector
|
||||
** See Copyright Notice in lua.h
|
||||
*/
|
||||
|
@ -401,7 +401,7 @@ static int traverseephemeron(global_State *g, Table *h) {
|
|||
reallymarkobject(g, gcvalue(gval(n))); /* mark it now */
|
||||
}
|
||||
}
|
||||
if (prop)
|
||||
if (g->gcstate != GCSatomic || prop)
|
||||
linktable(h, &g->ephemeron); /* have to propagate again */
|
||||
else if (hasclears) /* does table have white keys? */
|
||||
linktable(h, &g->allweak); /* may have to clean white keys */
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue