mirror of
https://github.com/netbirdio/gvisor.git
synced 2026-05-22 17:12:49 -07:00
9d41ac1ff0
unix.Errno is of type `uintptr`, which is an unsigned integer. It was being casted to `int`, which is a signed integer of the same size. This cast could overflow due to unsigned -> signed. Reported-by: syzbot+08e5bf6f25d7db4316b9@syzkaller.appspotmail.com PiperOrigin-RevId: 680668525