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
7d7930bb
Commit
7d7930bb
authored
Nov 05, 2002
by
Gustavo Niemeyer
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* bzmodule.c
More fixes of XDECREF'd values not initialized.
parent
e94d8fab
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
Modules/bz2module.c
Modules/bz2module.c
+3
-3
No files found.
Modules/bz2module.c
View file @
7d7930bb
...
...
@@ -1426,7 +1426,7 @@ BZ2Comp_compress(BZ2CompObject *self, PyObject *args)
int
datasize
;
int
bufsize
=
SMALLCHUNK
;
long
totalout
;
PyObject
*
ret
;
PyObject
*
ret
=
NULL
;
bz_stream
*
bzs
=
&
self
->
bzs
;
int
bzerror
;
...
...
@@ -1495,7 +1495,7 @@ static PyObject *
BZ2Comp_flush
(
BZ2CompObject
*
self
)
{
int
bufsize
=
SMALLCHUNK
;
PyObject
*
ret
;
PyObject
*
ret
=
NULL
;
bz_stream
*
bzs
=
&
self
->
bzs
;
int
totalout
;
int
bzerror
;
...
...
@@ -1905,7 +1905,7 @@ bz2_compress(PyObject *self, PyObject *args, PyObject *kwargs)
char
*
data
;
int
datasize
;
int
bufsize
;
PyObject
*
ret
;
PyObject
*
ret
=
NULL
;
bz_stream
_bzs
;
bz_stream
*
bzs
=
&
_bzs
;
int
bzerror
;
...
...
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