Update dependencies

This commit is contained in:
TwinProduction
2021-10-03 22:15:20 -04:00
parent 2d3fe9795f
commit 154bc7dbc6
1204 changed files with 373532 additions and 50576 deletions

View File

@ -332,7 +332,7 @@ func Xlocaltime_r(_ *TLS, timep, result uintptr) uintptr {
func Xopen(t *TLS, pathname uintptr, flags int32, args uintptr) int32 {
var mode types.Mode_t
if args != 0 {
mode = *(*types.Mode_t)(unsafe.Pointer(args))
mode = (types.Mode_t)(VaUint32(&args))
}
fd, err := unix.Open(GoString(pathname), int(flags), uint32(mode))
if err != nil {