diff --git a/core/time/timezone/tz_unix.odin b/core/time/timezone/tz_unix.odin index b3ab0d4cc..6de3eba2e 100644 --- a/core/time/timezone/tz_unix.odin +++ b/core/time/timezone/tz_unix.odin @@ -52,7 +52,7 @@ local_tz_name :: proc(allocator := context.allocator) -> (name: string, success: } if local_str == "" { - delete(local_str) + delete(local_str, allocator) str, err := strings.clone("UTC", allocator) if err != nil { return }