mirror of
https://github.com/python/cpython.git
synced 2025-07-30 22:54:16 +00:00
Fix gcc 4.0.x warning about use of uninitialized value.
This commit is contained in:
parent
098f6943c0
commit
89ba38152d
1 changed files with 1 additions and 1 deletions
|
@ -1070,7 +1070,7 @@ _db_associateCallback(DB* db, const DBT* priKey, const DBT* priData,
|
||||||
PyObject* key;
|
PyObject* key;
|
||||||
PyObject* data;
|
PyObject* data;
|
||||||
PyObject* args;
|
PyObject* args;
|
||||||
PyObject* result;
|
PyObject* result = NULL;
|
||||||
|
|
||||||
|
|
||||||
if (callback != NULL) {
|
if (callback != NULL) {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue