Open hiiamboris opened 2 years ago
Linking this to other no cat for throw issues: https://github.com/red/red/issues/4990#issuecomment-957477940
No error if just copy r
.
I think it's caused by OS resources cannot be freed by the GC. A weird workaround:
r: rtd-layout ["abc"]
view [
box rate 99 on-time [
loop 999 [face/draw: compose [text 0x0 (r)]]
loop 999 [face/draw: compose [text 0x0 (copy/deep r)]]
]
]
No problems with this:
Red []
view [
box rate 99 on-time [
loop 999 [face/draw: compose [text 0x0 (rtd-layout ["abc"])]]
]
]
so it's unlikely related to resources.
Describe the bug
Title.
To reproduce
Run this in
--cli
mode (GUI just hangs silently):After ~1 second it rapidly streams things like:
If you manage to close the window before it stack-overflows, you get:
Expected behavior
No errors
Platform version