Closed
Description
Recently #21376 (comment) we discovered that using uintptr structure fields to store pointers will confuse GC.
https://go-review.googlesource.com/#/c/go/+/106275/ converts all syscall code used by crypto/x509 package to use syscall.Pointer instead of uintptr. But there are other uintptr fields in syscall.
This issue is so we don't forget to check them all.
Alex