On many systems, socklen_t is defined as unsigned. This means that
checks for negative values are not meaningful.
Fix by explicitly casting to a signed integer.
This also avoids some warnings with GCC flag -Wtype-limits.
Signed-off-by: Blue Swirl
---
linux-user/syscall.c | 20 +--
On many systems, socklen_t is defined as unsigned. This means that
checks for negative values are not meaningful.
Fix by explicitly casting to a signed integer.
This also fixes some warnings with GCC flag -Wtype-limits.
Signed-off-by: Blue Swirl
---
linux-user/syscall.c | 20 +---