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
2d1f0924
Commit
2d1f0924
authored
Jan 18, 2014
by
Serhiy Storchaka
Browse files
Options
Browse Files
Download
Plain Diff
Issue #20244: Fixed possible file leaks when unexpected error raised in
tarfile open functions.
parents
aee0e63e
e413cde9
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
0 deletions
+6
-0
Lib/tarfile.py
Lib/tarfile.py
+6
-0
No files found.
Lib/tarfile.py
View file @
2d1f0924
...
...
@@ -1647,6 +1647,9 @@ class TarFile(object):
if mode == 'r':
raise ReadError("
not
a
bzip2
file
")
raise
except:
fileobj.close()
raise
t._extfileobj = False
return t
...
...
@@ -1672,6 +1675,9 @@ class TarFile(object):
if mode == 'r':
raise ReadError("
not
an
lzma
file
")
raise
except:
fileobj.close()
raise
t._extfileobj = False
return t
...
...
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