qemu-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Qemu-devel] [PATCH v2 3/4] qga: initialize progname with error_set_prog


From: Hitoshi Mitake
Subject: [Qemu-devel] [PATCH v2 3/4] qga: initialize progname with error_set_progname()
Date: Thu, 22 Jan 2015 18:08:13 +0900

Calling error_get_progname() in the context of qga can cause
segmentation fault because qga doesn't initialize its progname
with error_set_progname(). This patch adds the initialization.

Currently, the missing call of error_set_progname() doesn't cause any
problems because qga doesn't use error_get_progname(). This patch
is a proactive action.

Cc: Michael Roth <address@hidden>
Cc: Markus Armbruster <address@hidden>
Signed-off-by: Hitoshi Mitake <address@hidden>
---
 qga/main.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/qga/main.c b/qga/main.c
index 9939a2b..0885fc6 100644
--- a/qga/main.c
+++ b/qga/main.c
@@ -958,6 +958,7 @@ int main(int argc, char **argv)
     GList *blacklist = NULL;
     GAState *s;
 
+    error_set_progname(argv[0]);
     module_call_init(MODULE_INIT_QAPI);
 
     init_dfl_pathnames();
-- 
1.9.1




reply via email to

[Prev in Thread] Current Thread [Next in Thread]