actually return the result

This commit is contained in:
Benjamin Peterson 2012-05-25 00:19:40 -07:00
parent ca28e99202
commit 2d12e1458f
1 changed files with 1 additions and 1 deletions

View File

@ -394,7 +394,7 @@ zipimporter_find_module(PyObject *obj, PyObject *args)
break; break;
} }
Py_XINCREF(result); Py_XINCREF(result);
return NULL; return result;
} }