[libvirt] [libvirt-designer][PATCH v2 1/4] virtxml: Init variables

Michal Privoznik mprivozn at redhat.com
Thu Sep 13 14:04:28 UTC 2012


to avoid their uninitialized usage.
---
 examples/virtxml.c |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/examples/virtxml.c b/examples/virtxml.c
index 9783ba6..b0c3a77 100644
--- a/examples/virtxml.c
+++ b/examples/virtxml.c
@@ -97,7 +97,7 @@ print_oses(const gchar *option_name,
            GError **error)
 {
     OsinfoDb *db = get_default_osinfo_db();
-    OsinfoOsList *list;
+    OsinfoOsList *list = NULL;
     GList *oses = NULL;
     GList *os_iter;
     int ret = EXIT_FAILURE;
@@ -140,7 +140,7 @@ print_platforms(const gchar *option_name,
                 GError **error)
 {
     OsinfoDb *db = get_default_osinfo_db();
-    OsinfoPlatformList *list;
+    OsinfoPlatformList *list = NULL;
     GList *platforms = NULL;
     GList *platform_iter;
     int ret = EXIT_FAILURE;
-- 
1.7.8.6




More information about the libvir-list mailing list