r3 icon indicating copy to clipboard operation
r3 copied to clipboard

Posible stack corruption after loading a date

Open Oldes opened this issue 5 years ago • 2 comments

Check this console session:

>> recycle/off        ;<--- to make sure it is not GC related issue
>> <a>
== <a>   ;<--- correct result so far

>> load "22-Feb-2019" ;<--- this seems to make a problem
== 22-Feb-2019

>> <a>
== <>   ;<================= WHY THIS?

>> b: 1 ;<----------------- this makes it normal again
== 1

>> <a>
== <a>   ;<--- correct result again

Oldes avatar Mar 13 '19 00:03 Oldes

Original R3-alpha (2.100.111.3.1) is not affected. Ren-C is fine too.

Oldes avatar Mar 13 '19 00:03 Oldes

As load is a mezzanine function in R3, the issue can be simplified to this:

>> transcode #{312D312D32303032}
== [1-Jan-2002 #{}]

>> <a>
== <>

Oldes avatar Mar 13 '19 09:03 Oldes