mirror of
https://github.com/libvirt/libvirt.git
synced 2026-08-08 20:18:11 -05:00
Write error check conditionals in more compact form for dispatcher
Replace cases of
type = virConnectGetType(conn);
if (type == NULL)
goto cleanup;
With
if (!(type = virConnectGetType(conn)))
goto cleanup;
* daemon/remote.c: Write error checks in compat form
This commit is contained in:
+278
-517
File diff suppressed because it is too large
Load Diff
Reference in New Issue
Block a user