mirror of
https://gitlab.freedesktop.org/wayland/wayland.git
synced 2025-11-02 09:01:39 -05:00
Fix remaining signedness errors
We can change the data type for 'size' but we have to cast len to size_t for the comparisons with sizeof results.
This commit is contained in:
parent
0ca75a4f32
commit
3cddb3c692
2 changed files with 4 additions and 4 deletions
|
|
@ -202,7 +202,7 @@ wl_client_connection_data(int fd, uint32_t mask, void *data)
|
|||
return 1;
|
||||
}
|
||||
|
||||
while (len >= sizeof p) {
|
||||
while ((size_t) len >= sizeof p) {
|
||||
wl_connection_copy(connection, p, sizeof p);
|
||||
opcode = p[1] & 0xffff;
|
||||
size = p[1] >> 16;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue