[Zodb-checkins] CVS: Zope/lib/python/BTrees - BTreeModuleTemplate.c:1.31
Tim Peters
tim.one@comcast.net
Mon, 10 Jun 2002 00:57:43 -0400
Update of /cvs-repository/Zope/lib/python/BTrees
In directory cvs.zope.org:/tmp/cvs-serv20825
Modified Files:
BTreeModuleTemplate.c
Log Message:
Backporting a fix from Tres on the Zope3 branch: shush a gcc warning.
=== Zope/lib/python/BTrees/BTreeModuleTemplate.c 1.30 => 1.31 ===
*/
DECREF_KEY(i->key);
- if (i->usesValue)
+ if (i->usesValue) {
DECREF_VALUE(i->value);
+ }
}
i->position = -1; /* stop any stray next calls from doing harm */
}