diff options
author | Gregory P. Smith <greg@krypto.org> | 2013-03-23 16:06:06 -0700 |
---|---|---|
committer | Gregory P. Smith <greg@krypto.org> | 2013-03-23 16:06:06 -0700 |
commit | f20651c7878e3b37a7175922bf7a1ff4b428f818 (patch) | |
tree | aae93c8833441f33e515a234e6e5b61090032844 /Python/fileutils.c | |
parent | 09419f23ef7e459956abadb2834b14c553637abd (diff) | |
parent | 184eb1cba66def75440ee585826b437711ea5996 (diff) | |
download | cpython-f20651c7878e3b37a7175922bf7a1ff4b428f818.tar.gz |
Fixes issue4653 - Correctly specify the buffer size to FormatMessageW and
correctly check for errors on two CreateFileMapping calls.
Diffstat (limited to 'Python/fileutils.c')
-rw-r--r-- | Python/fileutils.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Python/fileutils.c b/Python/fileutils.c index b7c42e8e85..3c04e4969e 100644 --- a/Python/fileutils.c +++ b/Python/fileutils.c @@ -60,7 +60,7 @@ extern int _Py_normalize_encoding(const char *, char *, size_t); workaround is also enabled on error, for example if getting the locale failed. - Values of locale_is_ascii: + Values of force_ascii: 1: the workaround is used: _Py_wchar2char() uses encode_ascii_surrogateescape() and _Py_char2wchar() uses @@ -292,7 +292,7 @@ _Py_char2wchar(const char* arg, size_t *size) /* Only use the result if it contains no surrogate characters. */ for (tmp = res; *tmp != 0 && - (*tmp < 0xd800 || *tmp > 0xdfff); tmp++) + !Py_UNICODE_IS_SURROGATE(*tmp); tmp++) ; if (*tmp == 0) { if (size != NULL) @@ -338,7 +338,7 @@ _Py_char2wchar(const char* arg, size_t *size) memset(&mbs, 0, sizeof mbs); continue; } - if (*out >= 0xd800 && *out <= 0xdfff) { + if (Py_UNICODE_IS_SURROGATE(*out)) { /* Surrogate character. Escape the original byte sequence with surrogateescape. */ argsize -= converted; |