mirror of
https://github.com/libvirt/libvirt.git
synced 2025-02-25 18:55:26 -06:00
virhook: Resolve Coverity NULL_RETURNS
Coverity complains that many other callers to return err from virGetLastError() will check if err is not NULL before dereferencing it. Just do the same here for safety.
This commit is contained in:
@@ -300,7 +300,8 @@ virHookCall(int driver,
|
||||
if (ret < 0) {
|
||||
/* Convert INTERNAL_ERROR into known error. */
|
||||
virErrorPtr err = virGetLastError();
|
||||
virReportError(VIR_ERR_HOOK_SCRIPT_FAILED, "%s", err->message);
|
||||
virReportError(VIR_ERR_HOOK_SCRIPT_FAILED, "%s",
|
||||
err ? err->message : _("unknown error"));
|
||||
}
|
||||
|
||||
virCommandFree(cmd);
|
||||
|
||||
Reference in New Issue
Block a user