commit | 89ba38152d5dc50f7d4609a366e585cdca22dfff | [log] [tgz] |
---|---|---|
author | Thomas Wouters <thomas@python.org> | Tue Mar 07 14:14:51 2006 +0000 |
committer | Thomas Wouters <thomas@python.org> | Tue Mar 07 14:14:51 2006 +0000 |
tree | 9b616240db5904ede4aa51e71f7c24575a652d0b | |
parent | 098f6943c041f3d6ac42f1eb9b178df3bf43a383 [diff] |
Fix gcc 4.0.x warning about use of uninitialized value.
diff --git a/Modules/_bsddb.c b/Modules/_bsddb.c index f938ff0..9654cf3 100644 --- a/Modules/_bsddb.c +++ b/Modules/_bsddb.c
@@ -1070,7 +1070,7 @@ PyObject* key; PyObject* data; PyObject* args; - PyObject* result; + PyObject* result = NULL; if (callback != NULL) {