mirror of
https://github.com/Ed94/Odin.git
synced 2026-08-07 08:08:50 +00:00
posix: remove the is_temp things that prevented use-after-frees
https://github.com/odin-lang/Odin/commit/d0709a7de21efded4625167dbff4a7dd13d561b4 fixes those another way.
This commit is contained in:
@@ -7,7 +7,7 @@ import "base:runtime"
|
||||
import "core:sys/posix"
|
||||
|
||||
_posix_absolute_path :: proc(fd: posix.FD, name: string, allocator: runtime.Allocator) -> (path: cstring, err: Error) {
|
||||
TEMP_ALLOCATOR_GUARD(ignore=is_temp(allocator))
|
||||
TEMP_ALLOCATOR_GUARD()
|
||||
cname := temp_cstring(name)
|
||||
|
||||
buf: [posix.PATH_MAX]byte
|
||||
|
||||
Reference in New Issue
Block a user