summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPeter Krempa <pkrempa@redhat.com>2014-09-02 14:39:02 +0200
committerPeter Krempa <pkrempa@redhat.com>2014-09-02 14:41:12 +0200
commit23e22c2df148a402a0221c475e139b8ea19fbbd5 (patch)
tree40f7011facd82ee1e5fe0dd7e44c52f93610eeed
parentbc6da3214c1e49789dcb0062f8b175895bb6f20d (diff)
downloadlibvirt-python-23e22c2df148a402a0221c475e139b8ea19fbbd5.tar.gz
override: Fix two uninitialized variables in convertDomainStatsRecord
py_record_domain and py_record_stats would be accessed uninitialized if an out-of-memory condition would happen in the first loop. Unlikely, but coverity complained. Resolves: https://bugzilla.redhat.com/show_bug.cgi?id=1136354
-rw-r--r--libvirt-override.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libvirt-override.c b/libvirt-override.c
index 17ea042..872e33b 100644
--- a/libvirt-override.c
+++ b/libvirt-override.c
@@ -7963,8 +7963,8 @@ convertDomainStatsRecord(virDomainStatsRecordPtr *records,
{
PyObject *py_retval;
PyObject *py_record;
- PyObject *py_record_domain;
- PyObject *py_record_stats;
+ PyObject *py_record_domain = NULL;
+ PyObject *py_record_stats = NULL;
size_t i;
if (!(py_retval = PyList_New(nrecords)))