Skip to content

Commit

Permalink
fixup! Fix: revert change to keep bytesize in stack
Browse files Browse the repository at this point in the history
  • Loading branch information
ysbaddaden committed Feb 10, 2025
1 parent 876434c commit 729cbbb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/fiber.cr
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ class Fiber
stack =
{% if flag?(:interpreted) %}
# the interpreter is managing the stacks
Stack.new(Pointer(Void).null, 0)
Stack.new(Pointer(Void).null, Pointer(Void).null)
{% else %}
Crystal::Scheduler.stack_pool.checkout
{% end %}
Expand Down

0 comments on commit 729cbbb

Please sign in to comment.