Commit c38e7d4c authored by Guido van Rossum's avatar Guido van Rossum

Oops, forgot a pair of {}'s. (Greg Couch)

parent d358afee
......@@ -345,9 +345,10 @@ do_mkvalue(p_format, p_va)
else {
PyObject *v;
v = va_arg(*p_va, PyObject *);
if (v != NULL)
if (v != NULL) {
if (*(*p_format - 1) != 'N')
Py_INCREF(v);
}
else if (!PyErr_Occurred())
/* If a NULL was passed
* because a call that should
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment