Commit 9041daa9 authored by Antoine Pitrou's avatar Antoine Pitrou

Restore a conditional I removed by mistake.

parent 66994e11
...@@ -506,7 +506,7 @@ new_buffersize(PyFileIOObject *self, size_t currentsize) ...@@ -506,7 +506,7 @@ new_buffersize(PyFileIOObject *self, size_t currentsize)
actually be streaming pseudo-files. In this case, we actually be streaming pseudo-files. In this case, we
apply the more aggressive algorithm below. apply the more aggressive algorithm below.
*/ */
if (end >= SMALLCHUNK && pos >= 0) { if (end >= SMALLCHUNK && end >= pos && pos >= 0) {
/* Add 1 so if the file were to grow we'd notice. */ /* Add 1 so if the file were to grow we'd notice. */
return currentsize + end - pos + 1; return currentsize + end - pos + 1;
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment