diff options
| author | Colin Davidson <colrdavidson@gmail.com> | 2023-03-01 08:27:07 -0800 |
|---|---|---|
| committer | Colin Davidson <colrdavidson@gmail.com> | 2023-03-01 08:27:07 -0800 |
| commit | 2ca30e3acd413bdcc9dbe055b2b70084f08a4ba7 (patch) | |
| tree | dc51e7ca1832fbba1fa7695da8f74ac13e9a1f7a /core/net/url.odin | |
| parent | caf9716bf143e24f594e081b7e8ec19a3319dee7 (diff) | |
more test cleanup
Diffstat (limited to 'core/net/url.odin')
| -rw-r--r-- | core/net/url.odin | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/net/url.odin b/core/net/url.odin index c7bf77671..980fb5e90 100644 --- a/core/net/url.odin +++ b/core/net/url.odin @@ -117,7 +117,7 @@ percent_decode :: proc(encoded_string: string, allocator := context.allocator) - b := builder_make(allocator) builder_grow(&b, len(encoded_string)) - defer if !ok do destroy_builder(&b) + defer if !ok do builder_destroy(&b) stack_buf: [4]u8 pending := mem.buffer_from_slice(stack_buf[:]) |