36 lines
1.0 KiB
Diff
36 lines
1.0 KiB
Diff
|
|
From c8f1809df2bc40720415a6043f86aabaecd1490e Mon Sep 17 00:00:00 2001
|
||
|
|
From: =?UTF-8?q?J=C3=A1n=20Tomko?= <jtomko@redhat.com>
|
||
|
|
Date: Tue, 22 Sep 2020 23:17:18 +0200
|
||
|
|
Subject: [PATCH 030/108] util: event: check return value of virInitialize
|
||
|
|
MIME-Version: 1.0
|
||
|
|
Content-Type: text/plain; charset=UTF-8
|
||
|
|
Content-Transfer-Encoding: 8bit
|
||
|
|
|
||
|
|
This function can possibly fail.
|
||
|
|
|
||
|
|
Signed-off-by: Ján Tomko <jtomko@redhat.com>
|
||
|
|
Fixes: 2e07a1e14635ad25c57b66c13488feff4c8d2b0c
|
||
|
|
Reviewed-by: Peter Krempa <pkrempa@redhat.com>
|
||
|
|
(cherry picked from commit a95fc756271d2371c5ae947840458c572d83fd13)
|
||
|
|
---
|
||
|
|
src/util/virevent.c | 3 ++-
|
||
|
|
1 file changed, 2 insertions(+), 1 deletion(-)
|
||
|
|
|
||
|
|
diff --git a/src/util/virevent.c b/src/util/virevent.c
|
||
|
|
index 3477d63554..f6eb806faf 100644
|
||
|
|
--- a/src/util/virevent.c
|
||
|
|
+++ b/src/util/virevent.c
|
||
|
|
@@ -305,7 +305,8 @@ int virEventRegisterDefaultImpl(void)
|
||
|
|
{
|
||
|
|
VIR_DEBUG("registering default event implementation");
|
||
|
|
|
||
|
|
- virInitialize();
|
||
|
|
+ if (virInitialize() < 0)
|
||
|
|
+ return -1;
|
||
|
|
|
||
|
|
virResetLastError();
|
||
|
|
|
||
|
|
--
|
||
|
|
2.33.0
|
||
|
|
|