Fixes args being leaked on Windows

This commit is contained in:
Mason Remaley 2024-08-23 07:53:11 -07:00
parent 045d27e9af
commit 9950160840

View file

@ -170,6 +170,7 @@ pub fn main() !void {
const allocator = gpa.allocator();
var args = try std.process.argsWithAllocator(allocator);
defer args.deinit();
std.debug.assert(args.skip());
const in_path = args.next().?;
const out_path = args.next().?;