Really fix the bug Coverity found earlier...

This commit is contained in:
behackett 2013-06-24 18:59:06 -07:00
parent 80b8cfeff0
commit 013eb41036

View File

@ -1552,7 +1552,7 @@ static PyObject* get_value(PyObject* self, const char* buffer, int* position,
Py_DECREF(args);
Py_DECREF(kwargs);
Py_XDECREF(data);
Py_DECREF(data);
if (!value) {
return NULL;
}
@ -1563,7 +1563,7 @@ static PyObject* get_value(PyObject* self, const char* buffer, int* position,
uuiderror:
Py_DECREF(args);
Py_DECREF(kwargs);
Py_DECREF(data);
Py_XDECREF(data);
return NULL;
}