projects
/
python
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
098f694
)
Fix gcc 4.0.x warning about use of uninitialized value.
author
Thomas Wouters
<thomas@python.org>
Tue, 7 Mar 2006 14:14:51 +0000
(14:14 +0000)
committer
Thomas Wouters
<thomas@python.org>
Tue, 7 Mar 2006 14:14:51 +0000
(14:14 +0000)
Modules/_bsddb.c
patch
|
blob
|
history
diff --git
a/Modules/_bsddb.c
b/Modules/_bsddb.c
index f938ff044cbb64cd5c73a8b38f53a0cfd5d722a6..9654cf3ffe6604f5113bf7d92f86cde5fc94fb9d 100644
(file)
--- a/
Modules/_bsddb.c
+++ b/
Modules/_bsddb.c
@@
-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) {