[libvirt] [PATCH] datatypes: removing unnecessary return statement.

Julio Faracco jcfaracco at gmail.com
Thu May 18 01:53:23 UTC 2017


There is a wrong 'return' statement after a 'goto' statement inside the
function virConnectCloseCallbackDataRegister(). This commit only removes
the 'return'.

Signed-off-by: Julio Faracco <jcfaracco at gmail.com>
---
 src/datatypes.c | 1 -
 1 file changed, 1 deletion(-)

diff --git a/src/datatypes.c b/src/datatypes.c
index 59ba956..46414ae 100644
--- a/src/datatypes.c
+++ b/src/datatypes.c
@@ -193,7 +193,6 @@ void virConnectCloseCallbackDataRegister(virConnectCloseCallbackDataPtr closeDat
         VIR_WARN("Attempt to register callback on armed"
                  " close callback object %p", closeData);
         goto cleanup;
-        return;
     }
 
     closeData->conn = virObjectRef(conn);
-- 
2.7.4




More information about the libvir-list mailing list