]> git.proxmox.com Git - qemu.git/commit - block/vdi.c
vdi: Fix warning from clang
authorStefan Weil <sw@weilnetz.de>
Fri, 17 Aug 2012 13:23:24 +0000 (15:23 +0200)
committerKevin Wolf <kwolf@redhat.com>
Wed, 12 Sep 2012 13:50:09 +0000 (15:50 +0200)
commit514f21a5d4613e495adc2e2dd48f18091454efb8
treeee06562751826d5484a65f78e566427012e8c753
parent45724d6d02383b0d7d4a90e05787fca7c55cb070
vdi: Fix warning from clang

ccc-analyzer reports these warnings:

block/vdi.c:704:13: warning: Dereference of null pointer
            bmap[i] = VDI_UNALLOCATED;
            ^
block/vdi.c:702:13: warning: Dereference of null pointer
            bmap[i] = i;
            ^

Moving some code into the if block fixes this.
It also avoids calling function write with 0 bytes of data.

Signed-off-by: Stefan Weil <sw@weilnetz.de>
Signed-off-by: Kevin Wolf <kwolf@redhat.com>
block/vdi.c