Fixed indentation and decreased reference count
authorYoga Ramalingam <yramalingam1@bloomberg.net>
Wed, 3 Dec 2014 19:37:06 +0000 (14:37 -0500)
committerYoga Ramalingam <yramalingam1@bloomberg.net>
Wed, 3 Dec 2014 19:51:46 +0000 (14:51 -0500)
src/pyvalues.c

index 137d5eb..78e6cf9 100644 (file)
@@ -428,8 +428,10 @@ static meta_data_t *cpy_build_meta(PyObject *meta) {
                return NULL;
        }
        s = PyList_Size(l);
-    if (s <= 0)
-        return NULL;
+       if (s <= 0) {
+               Py_XDECREF(l);
+               return NULL;
+       }
 
        m = meta_data_create();
        for (i = 0; i < s; ++i) {