lua-users home
lua-l archive

[Date Prev][Date Next][Thread Prev][Thread Next] [Date Index] [Thread Index]


> What are the plans/timeline for an official patch for this GC bug?

Currently we have none :)  But I would say the official patch is exactly
the correction you suggested:

-      if (!u->marked) {
-        markobject(st, &u->value);
-        u->marked = 1;
-      }
+      markobject(st, u->v);
+      u->marked = 1;

Those assertions are more for "internal consumption", so I am not sure
we will correct them in a patch. (It's a patch, after all.)

-- Roberto