mirror of
https://github.com/ziglang/zig.git
synced 2026-03-16 16:37:17 +00:00
The deallocations of the process arguments are unnecessary, since the memory will be deallocated by arena.deinit(). The deallocations are incorrect, since ArgIterator.next() returns a slice pointing to the iterator's internal buffer, that should be deallocated with args_it.deinit().