You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When trying to print objects on the heap in Heap::drop as described in #947, a use after free occurs.
To reproduce, add println!("{:?}", self.objects); in Heap::drop, before self.clear() and execute the following command: cargo r --release -- run packages/Examples/fibonacci.candy -- 10
The text was updated successfully, but these errors were encountered:
When trying to print objects on the heap in Heap::drop as described in #947, a use after free occurs.
To reproduce, add
println!("{:?}", self.objects);
in Heap::drop, beforeself.clear()
and execute the following command:cargo r --release -- run packages/Examples/fibonacci.candy -- 10
The text was updated successfully, but these errors were encountered: