Skip to content

Commit

Permalink
fix small merging bug in 2.7 version where gcc complains (OS X)
Browse files Browse the repository at this point in the history
  • Loading branch information
ctismer committed Jul 4, 2013
1 parent 6b41864 commit 86d1480
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/zodbpickle/_pickle_27.c
Expand Up @@ -6251,12 +6251,12 @@ init_pickle(void)
if (BinaryType == NULL) {
PyObject *zodbpickle_module = PyImport_ImportModule("zodbpickle");
if (zodbpickle_module == NULL) {
return -1;
return;
}
BinaryType = PyObject_GetAttrString(zodbpickle_module, "binary");
Py_DECREF(zodbpickle_module);
if (BinaryType == NULL) {
return -1;
return;
}
}

Expand Down

0 comments on commit 86d1480

Please sign in to comment.