mirror of
https://github.com/vlang/v.git
synced 2023-08-10 21:13:21 +03:00
ci: fix cross compilation of vc/v.c
This commit is contained in:
parent
4c67c01e72
commit
71392111f8
@ -425,7 +425,7 @@ pub fn is_writable(path string) bool {
|
||||
p := path.replace('/', '\\')
|
||||
wp := p.to_wide()
|
||||
res := C._waccess(wp, w_ok) != -1
|
||||
unsafe { wp.free() }
|
||||
unsafe { free(wp) } // &u16
|
||||
unsafe { p.free() }
|
||||
return res
|
||||
} $else {
|
||||
@ -440,7 +440,7 @@ pub fn is_readable(path string) bool {
|
||||
p := path.replace('/', '\\')
|
||||
wp := p.to_wide()
|
||||
res := C._waccess(wp, r_ok) != -1
|
||||
unsafe { wp.free() }
|
||||
unsafe { free(wp) } // &u16
|
||||
unsafe { p.free() }
|
||||
return res
|
||||
} $else {
|
||||
|
Loading…
Reference in New Issue
Block a user