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
In a brief skim through I found this issue. I’d recommend using alloca to allocate on stack if you want to avoid dynamic allocation on heap. sizeof is a compile-time construct so it won’t work here the intended way. :c)
The text was updated successfully, but these errors were encountered:
tuxtower/src/load.c
Line 45 in acf4e13
In a brief skim through I found this issue. I’d recommend using
alloca
to allocate on stack if you want to avoid dynamic allocation on heap.sizeof
is a compile-time construct so it won’t work here the intended way. :c)The text was updated successfully, but these errors were encountered: