]> git.proxmox.com Git - qemu.git/commit
block/vdi: Fix wrong size in conditionally used memset, memcmp
authorStefan Weil <weil@mail.berlios.de>
Fri, 4 Feb 2011 20:01:16 +0000 (21:01 +0100)
committerKevin Wolf <kwolf@redhat.com>
Mon, 7 Feb 2011 11:55:18 +0000 (12:55 +0100)
commitd4e6590ab8de5b82f03c79e1c91c8feef30b1b2c
tree97ce0d608539ef8a3b83b622ad719a8277a7bc8b
parentf188c02db7c542f8b6d4817a4eb71d9a3d918da3
block/vdi: Fix wrong size in conditionally used memset, memcmp

Error report from cppcheck:
block/vdi.c:122: error: Using sizeof for array given as function argument returns the size of pointer.
block/vdi.c:128: error: Using sizeof for array given as function argument returns the size of pointer.

Fix both by setting the correct size.

The buggy code is only used when QEMU is build without uuid support.
The bug is not critical, so there is no urgent need to apply it to
old versions of QEMU.

Cc: Kevin Wolf <kwolf@redhat.com>
Signed-off-by: Stefan Weil <weil@mail.berlios.de>
Signed-off-by: Kevin Wolf <kwolf@redhat.com>
(cherry picked from commit 4f3669ea5bd73ade0dce5f1155cb9ad9788fd54c)
block/vdi.c