From: Peter Lieven <p...@kamp.de> the -ENOPSC case did not work due to the missing goto.
Reported-by: Kevin Wolf <kw...@redhat.com> Signed-off-by: Peter Lieven <p...@kamp.de> Cc: qemu-sta...@nongnu.org Signed-off-by: Paolo Bonzini <pbonz...@redhat.com> (cherry picked from commit d3bda7bc166f40326ba646ee145630bb1b59da96) Signed-off-by: Michael Roth <mdr...@linux.vnet.ibm.com> --- block/iscsi.c | 1 + 1 file changed, 1 insertion(+) diff --git a/block/iscsi.c b/block/iscsi.c index fa5252c..91b602c 100644 --- a/block/iscsi.c +++ b/block/iscsi.c @@ -1272,6 +1272,7 @@ static int iscsi_create(const char *filename, QEMUOptionParameter *options) } if (bs.total_sectors < total_size) { ret = -ENOSPC; + goto out; } ret = 0; -- 1.7.9.5