Commit 89ba3815 authored by Thomas Wouters's avatar Thomas Wouters

Fix gcc 4.0.x warning about use of uninitialized value.

parent 098f6943
......@@ -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) {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment