this repo has no description
3
fork

Configure Feed

Select the types of activity you want to include in your feed.

main: deinit app before writing error log

Signed-off-by: Tim Culverhouse <tim@timculverhouse.com>

+1
+1
src/main.zig
··· 79 79 error.LuaError => { 80 80 const msg = lua.toString(-1) catch ""; 81 81 const duped = alloc.dupe(u8, msg) catch ""; 82 + app.deinit(); 82 83 defer alloc.free(duped); 83 84 log.err("{s}", .{duped}); 84 85 return err;