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(a)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