this repo has no description
13
fork

Configure Feed

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

fix double free in fuzzy example

Signed-off-by: bevicted <170766675+bevicted@users.noreply.github.com>

authored by

bevicted and committed by
Tim Culverhouse
7500af9a cfa63114

+1 -1
+1 -1
examples/fuzzy.zig
··· 4 4 5 5 const Model = struct { 6 6 list: std.ArrayList(vxfw.Text), 7 + /// Memory owned by .arena 7 8 filtered: std.ArrayList(vxfw.RichText), 8 9 list_view: vxfw.ListView, 9 10 text_field: vxfw.TextField, ··· 197 198 }; 198 199 defer model.text_field.deinit(); 199 200 defer model.list.deinit(allocator); 200 - defer model.filtered.deinit(allocator); 201 201 defer model.arena.deinit(); 202 202 203 203 // Run the command