Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Z
ZODB
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Kirill Smelkov
ZODB
Commits
151a6fcb
Commit
151a6fcb
authored
Jun 10, 2002
by
Tim Peters
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Backporting a fix from Tres on the Zope3 branch: shush a gcc warning.
parent
ec683139
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
2 deletions
+3
-2
src/BTrees/BTreeModuleTemplate.c
src/BTrees/BTreeModuleTemplate.c
+3
-2
No files found.
src/BTrees/BTreeModuleTemplate.c
View file @
151a6fcb
...
@@ -238,8 +238,9 @@ finiSetIteration(SetIteration *i)
...
@@ -238,8 +238,9 @@ finiSetIteration(SetIteration *i)
* value need to be cleaned up.
* value need to be cleaned up.
*/
*/
DECREF_KEY
(
i
->
key
);
DECREF_KEY
(
i
->
key
);
if
(
i
->
usesValue
)
if
(
i
->
usesValue
)
{
DECREF_VALUE
(
i
->
value
);
DECREF_VALUE
(
i
->
value
);
}
}
}
i
->
position
=
-
1
;
/* stop any stray next calls from doing harm */
i
->
position
=
-
1
;
/* stop any stray next calls from doing harm */
}
}
...
@@ -410,7 +411,7 @@ static char BTree_module_documentation[] =
...
@@ -410,7 +411,7 @@ static char BTree_module_documentation[] =
"
\n
"
"
\n
"
MASTER_ID
MASTER_ID
BTREEITEMSTEMPLATE_C
BTREEITEMSTEMPLATE_C
"$Id: BTreeModuleTemplate.c,v 1.3
0 2002/06/08 04:41:44
tim_one Exp $
\n
"
"$Id: BTreeModuleTemplate.c,v 1.3
1 2002/06/10 04:57:43
tim_one Exp $
\n
"
BTREETEMPLATE_C
BTREETEMPLATE_C
BUCKETTEMPLATE_C
BUCKETTEMPLATE_C
KEYMACROS_H
KEYMACROS_H
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment