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 09:07:25 +0000 (10:07 +0100)
commita58385d711f581fed9fa09e4cc285cfbe315427d
tree13a5be2d5cf1057492acc47c996cdf291b339244
parent9491f1d86e24a62212dba0180d200a0e579a0c7a
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>
block/vdi.c