aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorBrad Lewis <22850972+BradLewis@users.noreply.github.com>2025-07-06 18:36:11 -0400
committerBrad Lewis <22850972+BradLewis@users.noreply.github.com>2025-07-06 18:36:11 -0400
commit9db96ce7f5186d510ee3992b6af5bb66997aa875 (patch)
treeb46ee55ed92db48282d32eb56455813d1752e081 /src
parentd950805b6c65435158cd64c63c2d2af290061d30 (diff)
Remove bad free when using the tracking allocator
Diffstat (limited to 'src')
-rw-r--r--src/server/requests.odin1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/server/requests.odin b/src/server/requests.odin
index 92bd8aa..77e4ca7 100644
--- a/src/server/requests.odin
+++ b/src/server/requests.odin
@@ -289,7 +289,6 @@ consume_requests :: proc(config: ^common.Config, writer: ^Writer) -> bool {
request := temp_requests[request_index]
call(request.value, request.id, writer, config)
clear_index_cache()
- json.destroy_value(request.value)
free_all(context.temp_allocator)
}