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
optimizer_symbols.c: make_bottom NULL deref when arena full
Summary
sym_new(ctx) at line 1535 can return NULL when the type arena is full. Result immediately dereferenced without check. Every other sym_new call site checks for NULL.
Fix
Add NULL check: if (sym == NULL) return out_of_space(ctx);