Merge pull request #3971 from jasonKercher/os2-process-linux

os2 process linux implementation
This commit is contained in:
gingerBill
2024-08-16 12:38:27 +01:00
committed by GitHub
12 changed files with 902 additions and 115 deletions
+4 -1
View File
@@ -2063,7 +2063,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