mirror of
https://github.com/python/cpython.git
synced 2024-12-05 07:43:50 +08:00
Fix gcc 4.0.x warning about use of uninitialized value.
This commit is contained in:
parent
098f6943c0
commit
89ba38152d
@ -1070,7 +1070,7 @@ _db_associateCallback(DB* db, const DBT* priKey, const DBT* priData,
|
||||
PyObject* key;
|
||||
PyObject* data;
|
||||
PyObject* args;
|
||||
PyObject* result;
|
||||
PyObject* result = NULL;
|
||||
|
||||
|
||||
if (callback != NULL) {
|
||||
|
Loading…
Reference in New Issue
Block a user