From: Peter Lieven Date: Tue, 24 Sep 2013 13:35:08 +0000 (+0200) Subject: block/get_block_status: set *pnum = 0 on error X-Git-Tag: TizenStudio_2.0_p2.3.2~208^2~1315^2~25 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=3e0a233d869e74e78b516be34715b91528508cfc;p=sdk%2Femulator%2Fqemu.git block/get_block_status: set *pnum = 0 on error if the call is invoked through bdrv_is_allocated the caller might expect *pnum = 0 on error. however, a new implementation of bdrv_get_block_status might only return a negative exit value on error while keeping *pnum untouched. Reviewed-by: Eric Blake Signed-off-by: Peter Lieven Signed-off-by: Kevin Wolf --- diff --git a/block.c b/block.c index b383b72..9b444b3 100644 --- a/block.c +++ b/block.c @@ -3162,6 +3162,7 @@ static int64_t coroutine_fn bdrv_co_get_block_status(BlockDriverState *bs, ret = bs->drv->bdrv_co_get_block_status(bs, sector_num, nb_sectors, pnum); if (ret < 0) { + *pnum = 0; return ret; }