make things compile, base64 has a memory leak

This commit is contained in:
Folkert 2021-10-06 22:57:11 +02:00
parent c6a8bdfdbe
commit 94e8c62613
12 changed files with 99 additions and 104 deletions

View file

@ -768,7 +768,7 @@ pub fn dictWalk(
const key = dict.getKey(i, alignment, key_width, value_width);
const value = dict.getValue(i, alignment, key_width, value_width);
caller(data, key, value, b2, b1);
caller(data, b2, key, value, b1);
std.mem.swap([*]u8, &b1, &b2);
},