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
fix(c-cli): drop __EMSCRIPTEN__-guarded buffer_free from the container path
The standalone container block called buffer_free, which is #ifndef __EMSCRIPTEN__
(guarded out of the WASM build) — breaking the emscripten compile and the default/
nix/Garnix aggregates that depend on it. The normal main flow never frees these
buffers (the CLI exits, OS reclaims), so the container path follows suit;
free(clean) (a plain malloc) stays. WASM + test-container-c green again.
0 commit comments