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
76f2b241
Commit
76f2b241
authored
Aug 17, 2007
by
Guido van Rossum
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix refcount leak, courtesy Christian Heines.
parent
eb33e5ae
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
2 deletions
+3
-2
Modules/zipimport.c
Modules/zipimport.c
+3
-2
No files found.
Modules/zipimport.c
View file @
76f2b241
...
@@ -852,8 +852,9 @@ get_data(char *archive, PyObject *toc_entry)
...
@@ -852,8 +852,9 @@ get_data(char *archive, PyObject *toc_entry)
buf
[
data_size
]
=
'\0'
;
buf
[
data_size
]
=
'\0'
;
if
(
compress
==
0
)
{
/* data is not compressed */
if
(
compress
==
0
)
{
/* data is not compressed */
raw_data
=
PyBytes_FromStringAndSize
(
buf
,
data_size
);
data
=
PyBytes_FromStringAndSize
(
buf
,
data_size
);
return
raw_data
;
Py_DECREF
(
raw_data
);
return
data
;
}
}
/* Decompress with zlib */
/* Decompress with zlib */
...
...
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