]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
(Backport from r55770)
authorHye-Shik Chang <hyeshik@gmail.com>
Tue, 5 Jun 2007 19:02:59 +0000 (19:02 +0000)
committerHye-Shik Chang <hyeshik@gmail.com>
Tue, 5 Jun 2007 19:02:59 +0000 (19:02 +0000)
Bug #1728403: Fix a bug that CJKCodecs StreamReader hangs when it
reads a file that ends with incomplete sequence and sizehint argument
for .read() is specified.

Lib/test/test_multibytecodec.py
Misc/NEWS
Modules/cjkcodecs/multibytecodec.c

index 3fcc8ba81a50cf23e7645be42207e7c4bd215e93..052f1681ddae647eaa325bcb5a933b0e23e28933 100644 (file)
@@ -7,7 +7,17 @@
 
 from test import test_support
 from test import test_multibytecodec_support
-import unittest, StringIO, codecs, sys
+from test.test_support import TESTFN
+import unittest, StringIO, codecs, sys, os
+
+class Test_StreamReader(unittest.TestCase):
+    def test_bug1728403(self):
+        try:
+            open(TESTFN, 'w').write('\xa1')
+            f = codecs.open(TESTFN, encoding='cp949')
+            self.assertRaises(UnicodeDecodeError, f.read, 2)
+        finally:
+            os.unlink(TESTFN)
 
 class Test_StreamWriter(unittest.TestCase):
     if len(u'\U00012345') == 2: # UCS2
@@ -99,6 +109,7 @@ class Test_ISO2022(unittest.TestCase):
 
 def test_main():
     suite = unittest.TestSuite()
+    suite.addTest(unittest.makeSuite(Test_StreamReader))
     suite.addTest(unittest.makeSuite(Test_StreamWriter))
     suite.addTest(unittest.makeSuite(Test_ISO2022))
     test_support.run_suite(suite)
index e8ea8cc01a5895dd9f847c21eabd2cc13c5ad74d..002ea18d9c145714f87d08c30d7c4f3e32598768 100644 (file)
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -26,6 +26,10 @@ Extension Modules
 Library
 -------
 
+- Bug #1728403: Fix a bug that CJKCodecs StreamReader hangs when it
+  reads a file that ends with incomplete sequence and sizehint argument
+  for .read() is specified.
+
 - HTML-escape the plain traceback in cgitb's HTML output, to prevent
   the traceback inadvertently or maliciously closing the comment and
   injecting HTML into the error page.
index 7d2d15ebfb78e04e8be8d1f0ad0bfcf9e3e99216..b69eefff0a90c114e1b53928ab15e3990e8c0c74 100644 (file)
@@ -705,6 +705,8 @@ mbstreamreader_iread(MultibyteStreamReaderObject *self,
        cres = NULL;
 
        for (;;) {
+               int endoffile;
+
                if (sizehint < 0)
                        cres = PyObject_CallMethod(self->stream,
                                        (char *)method, NULL);
@@ -721,6 +723,8 @@ mbstreamreader_iread(MultibyteStreamReaderObject *self,
                        goto errorexit;
                }
 
+               endoffile = (PyString_GET_SIZE(cres) == 0);
+
                if (self->pendingsize > 0) {
                        PyObject *ctr;
                        char *ctrdata;
@@ -772,7 +776,7 @@ mbstreamreader_iread(MultibyteStreamReaderObject *self,
                                        goto errorexit;
                        }
 
-               if (rsize == 0 || sizehint < 0) { /* end of file */
+               if (endoffile || sizehint < 0) { /* end of file */
                        if (buf.inbuf < buf.inbuf_end &&
                            multibytecodec_decerror(self->codec, &self->state,
                                        &buf, self->errors, MBERR_TOOFEW))