qxl: Don't drop client capability bits
interface_set_client_capabilities() copies only the first few bits, because it falls into a Classic C trap: you can declare a parameter uint8_t caps[58], but the resulting parameter type is uint8_t *, not uint8_t[58]. In particular, sizeof(caps) is sizeof(uint8_t *), not the intended sizeof(uint8_t[58]). Harmless, because the bits aren't used, yet. Broken in commit c10018d6. Spotted by Coverity. Signed-off-by: Markus Armbruster <armbru@redhat.com> Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>
This commit is contained in:
parent
bc5f92e5db
commit
08688af04d
6
hw/qxl.c
6
hw/qxl.c
@ -951,9 +951,11 @@ static void interface_set_client_capabilities(QXLInstance *sin,
|
||||
}
|
||||
|
||||
qxl->shadow_rom.client_present = client_present;
|
||||
memcpy(qxl->shadow_rom.client_capabilities, caps, sizeof(caps));
|
||||
memcpy(qxl->shadow_rom.client_capabilities, caps,
|
||||
sizeof(qxl->shadow_rom.client_capabilities));
|
||||
qxl->rom->client_present = client_present;
|
||||
memcpy(qxl->rom->client_capabilities, caps, sizeof(caps));
|
||||
memcpy(qxl->rom->client_capabilities, caps,
|
||||
sizeof(qxl->rom->client_capabilities));
|
||||
qxl_rom_set_dirty(qxl);
|
||||
|
||||
qxl_send_events(qxl, QXL_INTERRUPT_CLIENT);
|
||||
|
Loading…
x
Reference in New Issue
Block a user