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
96a0378e
Commit
96a0378e
authored
Jul 15, 2013
by
Richard Oudkerk
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Issue #18344: Fix potential ref-leaks in _bufferedreader_read_all().
parent
f744645c
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
47 additions
and
48 deletions
+47
-48
Misc/NEWS
Misc/NEWS
+2
-0
Modules/_io/bufferedio.c
Modules/_io/bufferedio.c
+45
-48
No files found.
Misc/NEWS
View file @
96a0378e
...
...
@@ -12,6 +12,8 @@ What's New in Python 3.3.3 release candidate 1?
Core and Builtins
-----------------
- Issue #18344: Fix potential ref-leaks in _bufferedreader_read_all().
- Issue #17872: Fix a segfault in marshal.load() when input stream returns
more bytes than requested.
...
...
Modules/_io/bufferedio.c
View file @
96a0378e
...
...
@@ -1474,7 +1474,7 @@ static PyObject *
_bufferedreader_read_all
(
buffered
*
self
)
{
Py_ssize_t
current_size
;
PyObject
*
res
,
*
data
=
NULL
,
*
chunk
,
*
chunks
;
PyObject
*
res
=
NULL
,
*
data
=
NULL
,
*
tmp
=
NULL
,
*
chunks
=
NULL
;
/* First copy what we have in the current buffer. */
current_size
=
Py_SAFE_DOWNCAST
(
READAHEAD
(
self
),
Py_off_t
,
Py_ssize_t
);
...
...
@@ -1487,85 +1487,82 @@ _bufferedreader_read_all(buffered *self)
}
/* We're going past the buffer's bounds, flush it */
if
(
self
->
writable
)
{
res
=
buffered_flush_and_rewind_unlocked
(
self
);
if
(
res
==
NULL
)
return
NULL
;
Py_CLEAR
(
res
);
tmp
=
buffered_flush_and_rewind_unlocked
(
self
);
if
(
tmp
==
NULL
)
goto
cleanup
;
Py_CLEAR
(
tmp
);
}
_bufferedreader_reset_buf
(
self
);
if
(
PyObject_HasAttr
(
self
->
raw
,
_PyIO_str_readall
))
{
chunk
=
PyObject_CallMethodObjArgs
(
self
->
raw
,
_PyIO_str_readall
,
NULL
);
if
(
chunk
==
NULL
)
return
NULL
;
if
(
chunk
!=
Py_None
&&
!
PyBytes_Check
(
chunk
))
{
Py_XDECREF
(
data
);
Py_DECREF
(
chunk
);
tmp
=
PyObject_CallMethodObjArgs
(
self
->
raw
,
_PyIO_str_readall
,
NULL
);
if
(
tmp
==
NULL
)
goto
cleanup
;
if
(
tmp
!=
Py_None
&&
!
PyBytes_Check
(
tmp
))
{
PyErr_SetString
(
PyExc_TypeError
,
"readall() should return bytes"
);
return
NULL
;
goto
cleanup
;
}
if
(
chunk
==
Py_None
)
{
if
(
current_size
==
0
)
return
chunk
;
else
{
Py_DECREF
(
chunk
);
return
data
;
if
(
tmp
==
Py_None
)
{
if
(
current_size
==
0
)
{
res
=
Py_None
;
goto
cleanup
;
}
else
{
res
=
data
;
goto
cleanup
;
}
}
else
if
(
current_size
)
{
PyBytes_Concat
(
&
data
,
chunk
);
Py_DECREF
(
chunk
);
if
(
data
==
NULL
)
return
NULL
;
return
data
;
}
else
return
chunk
;
PyBytes_Concat
(
&
data
,
tmp
);
res
=
data
;
goto
cleanup
;
}
else
{
res
=
tmp
;
goto
cleanup
;
}
}
chunks
=
PyList_New
(
0
);
if
(
chunks
==
NULL
)
{
Py_XDECREF
(
data
);
return
NULL
;
}
if
(
chunks
==
NULL
)
goto
cleanup
;
while
(
1
)
{
if
(
data
)
{
if
(
PyList_Append
(
chunks
,
data
)
<
0
)
{
Py_DECREF
(
data
);
Py_DECREF
(
chunks
);
return
NULL
;
}
Py_DECREF
(
data
);
if
(
PyList_Append
(
chunks
,
data
)
<
0
)
goto
cleanup
;
Py_CLEAR
(
data
);
}
/* Read until EOF or until read() would block. */
data
=
PyObject_CallMethodObjArgs
(
self
->
raw
,
_PyIO_str_read
,
NULL
);
if
(
data
==
NULL
)
{
Py_DECREF
(
chunks
);
return
NULL
;
}
if
(
data
==
NULL
)
goto
cleanup
;
if
(
data
!=
Py_None
&&
!
PyBytes_Check
(
data
))
{
Py_DECREF
(
data
);
Py_DECREF
(
chunks
);
PyErr_SetString
(
PyExc_TypeError
,
"read() should return bytes"
);
return
NULL
;
goto
cleanup
;
}
if
(
data
==
Py_None
||
PyBytes_GET_SIZE
(
data
)
==
0
)
{
if
(
current_size
==
0
)
{
Py_DECREF
(
chunks
)
;
return
data
;
res
=
data
;
goto
cleanup
;
}
else
{
res
=
_PyBytes_Join
(
_PyIO_empty_bytes
,
chunks
);
Py_DECREF
(
data
);
Py_DECREF
(
chunks
);
return
res
;
tmp
=
_PyBytes_Join
(
_PyIO_empty_bytes
,
chunks
);
res
=
tmp
;
goto
cleanup
;
}
}
current_size
+=
PyBytes_GET_SIZE
(
data
);
if
(
self
->
abs_pos
!=
-
1
)
self
->
abs_pos
+=
PyBytes_GET_SIZE
(
data
);
}
cleanup:
/* res is either NULL or a borrowed ref */
Py_XINCREF
(
res
);
Py_XDECREF
(
data
);
Py_XDECREF
(
tmp
);
Py_XDECREF
(
chunks
);
return
res
;
}
/* Read n bytes from the buffer if it can, otherwise return None.
...
...
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