authorgravatar for 24freemanb@gmail.comBrandon Freeman <24freemanb@gmail.com> 2026-03-13 21:17:34-04:00
committergravatar for squeek502@hotmail.comRyan Liptak <squeek502@hotmail.com> 2026-03-14 07:11:08+01:00
log22c4fbdf16ce67bdcffc33a5319e3734f880e002
treeb08507d2a5881de114386352552cb8a0cbc4524c
parentc6cb5f691dce18b2c5b50fac8b3a770f0c2965ba

fix: chdir on uring


1 files changed, 1 insertions(+), 1 deletions(-)

lib/std/Io/Uring.zig+1-1
......@@ -4199,7 +4199,7 @@ fn processSetCurrentPath(userdata: ?*anyopaque, dir_path: []const u8) process.Se
41994199 const dir_path_posix = try pathToPosix(dir_path, &path_buffer);
42004200 var sync: CancelRegion.Sync = try .init(ev);
42014201 defer sync.deinit(ev);
4202 return ev.chdir(&sync, dir_path_posix);
4202 return chdir(&sync, dir_path_posix);
42034203}
42044204
42054205fn processReplace(userdata: ?*anyopaque, options: process.ReplaceOptions) process.ReplaceError {