We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6347c87 commit 73dcc39Copy full SHA for 73dcc39
core/os/os2/env_posix.odin
@@ -37,7 +37,7 @@ _lookup_env_buf :: proc(buf: []u8, key: string) -> (value: string, error: Error)
37
copy(buf, key)
38
}
39
40
- cval := posix.getenv(ckey)
+ cval := posix.getenv(cstring(raw_data(buf)))
41
if cval == nil {
42
return
43
0 commit comments