On Fri, Aug 16, 2019 at 12:39:24PM +0200, Peter Krempa wrote:
Automatically clean the 'uri' variable and get rid of the
'cleanup'
label.
Signed-off-by: Peter Krempa <pkrempa(a)redhat.com>
---
src/util/virstoragefile.c | 31 +++++++++++++------------------
1 file changed, 13 insertions(+), 18 deletions(-)
diff --git a/src/util/virstoragefile.c b/src/util/virstoragefile.c
index 8af45bfbd2..e93f6285b0 100644
--- a/src/util/virstoragefile.c
+++ b/src/util/virstoragefile.c
@@ -2664,32 +2664,31 @@ static int
virStorageSourceParseBackingURI(virStorageSourcePtr src,
const char *uristr)
{
- virURIPtr uri = NULL;
+ VIR_AUTOPTR(virURI)uri = NULL;
Space between the closing parenthesis and the variable name, please.
const char *path = NULL;
- int ret = -1;
VIR_AUTOSTRINGLIST scheme = NULL;
Reviewed-by: Ján Tomko <jtomko(a)redhat.com>
Jano