Skip to content

Commit 914b96c

Browse files
committed
windows: support ill-formed UTF-16 in UTF16PtrToString
UTF16PtrToString does not support ill-formed UTF-16 because it uses utf16.Decode, which expects well-formed UTF-16. This CL updates the UTF16PtrToString implementation to use UTF16ToString instead of utf16.Decode, which supports ill-formed UTF-16 since go1.21 via syscall.UTF16ToString. Change-Id: Ifb72b6d38a8c08ad90ec6a47eed05fc3739500a1 Reviewed-on: https://go-review.googlesource.com/c/sys/+/560355 LUCI-TryBot-Result: Go LUCI <[email protected]> Reviewed-by: Bryan Mills <[email protected]> Reviewed-by: Michael Knyszek <[email protected]>
1 parent 511ec84 commit 914b96c

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

windows/syscall_windows.go

+1-2
Original file line numberDiff line numberDiff line change
@@ -125,8 +125,7 @@ func UTF16PtrToString(p *uint16) string {
125125
for ptr := unsafe.Pointer(p); *(*uint16)(ptr) != 0; n++ {
126126
ptr = unsafe.Pointer(uintptr(ptr) + unsafe.Sizeof(*p))
127127
}
128-
129-
return string(utf16.Decode(unsafe.Slice(p, n)))
128+
return UTF16ToString(unsafe.Slice(p, n))
130129
}
131130

132131
func Getpagesize() int { return 4096 }

0 commit comments

Comments
 (0)