[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Qemu-devel] [PATCH 1/5] block/raw_bsd: Employ error parameter
From: |
Max Reitz |
Subject: |
[Qemu-devel] [PATCH 1/5] block/raw_bsd: Employ error parameter |
Date: |
Thu, 10 Oct 2013 15:44:00 +0200 |
Propagate errors in raw_create rather than directly reporting and
afterwards discarding them.
Signed-off-by: Max Reitz <address@hidden>
---
block/raw_bsd.c | 3 +--
1 file changed, 1 insertion(+), 2 deletions(-)
diff --git a/block/raw_bsd.c b/block/raw_bsd.c
index d61906b..0078c1b 100644
--- a/block/raw_bsd.c
+++ b/block/raw_bsd.c
@@ -140,8 +140,7 @@ static int raw_create(const char *filename,
QEMUOptionParameter *options,
ret = bdrv_create_file(filename, options, &local_err);
if (error_is_set(&local_err)) {
- qerror_report_err(local_err);
- error_free(local_err);
+ error_propagate(errp, local_err);
}
return ret;
}
--
1.8.3.1