Michele Pes
Michele Pes
The instruction: _lea rdi,qword ptr ds:[rsi+rcx-1]_ is misleading: since no memory access is performed, it should be: _lea rdi,[rsi+rcx-1]_
### Describe the bug `import os const ( buf_size = $if windows { os.max_path_len * 2 } $else { os.max_path_len } ) fn main() { mut buf := [buf_size]u8{} println(buf.len)...
### Describe the bug __os.real_path__ in windows correctly resolve symbolic links to file **ONLY** if file exists. If link is broken, the functions return the original (input passed to function)...