summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorOsier Yang <jyang@redhat.com>2012-05-02 23:05:59 +0800
committerOsier Yang <jyang@redhat.com>2012-05-04 10:23:57 +0800
commit2f04eb3b4791df014b6ce7f2671318a52b306588 (patch)
treecfddf85655e590d622a387198faa985647f123e4
parentbccf20d8c5036501f4e1d28cf87f08687b9f635a (diff)
downloadlibvirt-python-split-2f04eb3b4791df014b6ce7f2671318a52b306588.tar.gz
libvirt-python-split-2f04eb3b4791df014b6ce7f2671318a52b306588.tar.xz
libvirt-python-split-2f04eb3b4791df014b6ce7f2671318a52b306588.zip
Coverity: Fix the forward_null error in Python binding codesv0.9.12-rc2v0.9.12
Related coverity log: Error: FORWARD_NULL: /builddir/build/BUILD/libvirt-0.9.10/python/libvirt-override.c:355: assign_zero: Assigning: "params" = 0. /builddir/build/BUILD/libvirt-0.9.10/python/libvirt-override.c:458: var_deref_model: Passing null variable "params" to function "getPyVirTypedParameter", which dereferences it. (The dereference is assumed on the basis of the 'nonnull' parameter attribute.)
-rw-r--r--libvirt-override.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libvirt-override.c b/libvirt-override.c
index 56f96ba..130e702 100644
--- a/libvirt-override.c
+++ b/libvirt-override.c
@@ -71,7 +71,7 @@ static char *py_str(PyObject *obj)
/* Helper function to convert a virTypedParameter output array into a
* Python dictionary for return to the user. Return NULL on failure,
* after raising a python exception. */
-static PyObject * ATTRIBUTE_NONNULL(1)
+static PyObject *
getPyVirTypedParameter(const virTypedParameterPtr params, int nparams)
{
PyObject *key, *val, *info;