alexfru / SmallerC

Simple C compiler
BSD 2-Clause "Simplified" License
1.35k stars 155 forks source link

Memory leaks fixes #33

Closed aleexmaftei closed 3 months ago

aleexmaftei commented 2 years ago

Fixes for Issue #32.

sskras commented 11 months ago

Looks quite nice. Ping @alexfru :)

alexfru commented 3 months ago

Haven't looked at everything yet, but the added va_end(vl);'s need to be under the same #if... as the matching va_start(vl, format);.

alexfru commented 3 months ago

On top of that:

I'm gonna fix these (except main()'s) myself.