actually return the result

This commit is contained in:
Benjamin Peterson 2012-05-25 00:19:40 -07:00
parent ca28e99202
commit 2d12e1458f

View file

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