Fix gcc 4.0.x warning about use of uninitialized value.
authorThomas Wouters <thomas@python.org>
Tue, 7 Mar 2006 14:14:51 +0000 (14:14 +0000)
committerThomas Wouters <thomas@python.org>
Tue, 7 Mar 2006 14:14:51 +0000 (14:14 +0000)
Modules/_bsddb.c

index f938ff044cbb64cd5c73a8b38f53a0cfd5d722a6..9654cf3ffe6604f5113bf7d92f86cde5fc94fb9d 100644 (file)
@@ -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) {