Hi there, ```mrb_gc_unregister``` stops the first time it found an object, leading to memory leaks: https://github.com/mruby/mruby/blob/f61ab9668955a6017ca90a302d54b12a8314588e/src/gc.c#L537 Can we just remove the break? or would that break.. the function?
Hi there,
mrb_gc_unregisterstops the first time it found an object, leading to memory leaks:mruby/src/gc.c
Line 537 in f61ab96
Can we just remove the break? or would that break.. the function?