mirror of
https://github.com/qemu/qemu.git
synced 2024-11-24 19:33:39 +08:00
qemu-io: Fix return value handling of bdrv_open
bdrv_open may return -errno so we have to check if the return value is '< 0', not '== -1'. Signed-off-by: Ryota Ozaki <ozaki.ryota@gmail.com> Signed-off-by: Aurelien Jarno <aurelien@aurel32.net>
This commit is contained in:
parent
b6353bea57
commit
06b611c48e
@ -1284,7 +1284,7 @@ static int openfile(char *name, int flags, int growable)
|
|||||||
flags |= BDRV_O_FILE;
|
flags |= BDRV_O_FILE;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (bdrv_open(bs, name, flags) == -1) {
|
if (bdrv_open(bs, name, flags) < 0) {
|
||||||
fprintf(stderr, "%s: can't open device %s\n", progname, name);
|
fprintf(stderr, "%s: can't open device %s\n", progname, name);
|
||||||
bs = NULL;
|
bs = NULL;
|
||||||
return 1;
|
return 1;
|
||||||
|
Loading…
Reference in New Issue
Block a user