Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 89ba381

Browse files
committed
Fix gcc 4.0.x warning about use of uninitialized value.
1 parent 098f694 commit 89ba381

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Modules/_bsddb.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1070,7 +1070,7 @@ _db_associateCallback(DB* db, const DBT* priKey, const DBT* priData,
10701070
PyObject* key;
10711071
PyObject* data;
10721072
PyObject* args;
1073-
PyObject* result;
1073+
PyObject* result = NULL;
10741074

10751075

10761076
if (callback != NULL) {

0 commit comments

Comments
 (0)