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

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@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

On 05/17/2017 09:53 PM, Julio Faracco wrote:
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@gmail.com> --- src/datatypes.c | 1 - 1 file changed, 1 deletion(-)
Reviewed-by: John Ferlan <jferlan@redhat.com> (and pushed) Tks - John
participants (2)
-
John Ferlan
-
Julio Faracco