mirror of
https://github.com/Ed94/Odin.git
synced 2026-07-31 20:00:09 +00:00
update core:filepath's clean, join and split_list to return optional Allocator_Errors
This commit is contained in:
@@ -2071,7 +2071,10 @@ replace :: proc(s, old, new: string, n: int, allocator := context.allocator, loc
|
||||
}
|
||||
|
||||
|
||||
t := make([]byte, len(s) + byte_count*(len(new) - len(old)), allocator, loc)
|
||||
t, err := make([]byte, len(s) + byte_count*(len(new) - len(old)), allocator, loc)
|
||||
if err != nil {
|
||||
return
|
||||
}
|
||||
was_allocation = true
|
||||
|
||||
w := 0
|
||||
|
||||
Reference in New Issue
Block a user