Re: [Qemu-devel] [PATCH 4/8] block: bdrv_img_create(): add Error ** argument

2012-10-18 Thread Luiz Capitulino
On Thu, 18 Oct 2012 14:08:05 +0200 Kevin Wolf wrote: > Am 17.10.2012 21:35, schrieb Luiz Capitulino: > > This commit adds an Error ** argument to bdrv_img_create() and set it > > appropriately on error. > > > > Callers of bdrv_img_create() pass NULL for the new argument and still > > rely on bdr

Re: [Qemu-devel] [PATCH 4/8] block: bdrv_img_create(): add Error ** argument

2012-10-18 Thread Kevin Wolf
Am 17.10.2012 21:35, schrieb Luiz Capitulino: > This commit adds an Error ** argument to bdrv_img_create() and set it > appropriately on error. > > Callers of bdrv_img_create() pass NULL for the new argument and still > rely on bdrv_img_create()'s return value. Next commits will change > callers t

[Qemu-devel] [PATCH 4/8] block: bdrv_img_create(): add Error ** argument

2012-10-17 Thread Luiz Capitulino
This commit adds an Error ** argument to bdrv_img_create() and set it appropriately on error. Callers of bdrv_img_create() pass NULL for the new argument and still rely on bdrv_img_create()'s return value. Next commits will change callers to use the Error object instead. Signed-off-by: Luiz Capit