Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Update Modules/_sqlite/module.c
Co-authored-by: Victor Stinner <[email protected]>
  • Loading branch information
Erlend Egeberg Aasland and vstinner authored Nov 4, 2020
commit 23ba6fa2a26e18f1599e7b9fd363803e7b4fa731
2 changes: 1 addition & 1 deletion Modules/_sqlite/module.c
Original file line number Diff line number Diff line change
Expand Up @@ -364,7 +364,7 @@ do { \
} \
res = PyModule_AddObjectRef(module, name, exc); \
Py_DECREF(exc); \
if (res == -1) { \
if (res < 0) { \
goto error; \
} \
} while (0)
Expand Down