mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2025-02-22 11:22:23 +00:00
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>
This commit is contained in:
parent
0da4a635bc
commit
6a12907d86
@ -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);
|
||||
|
Loading…
x
Reference in New Issue
Block a user