Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cpython
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
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
cpython
Commits
ac25fab1
Commit
ac25fab1
authored
Sep 03, 2008
by
Jesus Cea
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix some leaks - Neal Norwitz
parent
b339b2aa
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
4 deletions
+6
-4
Modules/_bsddb.c
Modules/_bsddb.c
+5
-3
Modules/bsddb.h
Modules/bsddb.h
+1
-1
No files found.
Modules/_bsddb.c
View file @
ac25fab1
...
...
@@ -1106,7 +1106,7 @@ DBEnv_dealloc(DBEnvObject* self)
{
PyObject
*
dummy
;
if
(
self
->
db_env
&&
!
self
->
closed
)
{
if
(
self
->
db_env
)
{
dummy
=
DBEnv_close_internal
(
self
,
0
);
Py_XDECREF
(
dummy
);
}
...
...
@@ -3981,13 +3981,15 @@ DBEnv_close_internal(DBEnvObject* self, int flags)
dummy
=
DB_close_internal
(
self
->
children_dbs
,
0
);
Py_XDECREF
(
dummy
);
}
}
self
->
closed
=
1
;
if
(
self
->
db_env
)
{
MYDB_BEGIN_ALLOW_THREADS
;
err
=
self
->
db_env
->
close
(
self
->
db_env
,
flags
);
MYDB_END_ALLOW_THREADS
;
/* after calling DBEnv->close, regardless of error, this DBEnv
* may not be accessed again (Berkeley DB docs). */
self
->
closed
=
1
;
self
->
db_env
=
NULL
;
RETURN_IF_ERR
();
}
...
...
@@ -6148,7 +6150,7 @@ DBSequence_open(DBSequenceObject* self, PyObject* args, PyObject* kwargs)
err
=
self
->
sequence
->
open
(
self
->
sequence
,
txn
,
&
key
,
flags
);
MYDB_END_ALLOW_THREADS
CLEAR
_DBT
(
key
);
FREE
_DBT
(
key
);
RETURN_IF_ERR
();
if
(
txn
)
{
...
...
Modules/bsddb.h
View file @
ac25fab1
...
...
@@ -105,7 +105,7 @@
#error "eek! DBVER can't handle minor versions > 9"
#endif
#define PY_BSDDB_VERSION "4.7.3pre
3
"
#define PY_BSDDB_VERSION "4.7.3pre
4
"
/* Python object definitions */
...
...
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