pgsql: Fix some wide-character bugs in the text-search parser.

Поиск
Список
Период
Сортировка
От Tom Lane
Тема pgsql: Fix some wide-character bugs in the text-search parser.
Дата
Msg-id E1W9jyr-0004yp-OG@gemulon.postgresql.org
обсуждение исходный текст
Список pgsql-committers
Fix some wide-character bugs in the text-search parser.

In p_isdigit and other character class test functions generated by the
p_iswhat macro, the code path for non-C locales with multibyte encodings
contained a bogus pointer cast that would accidentally fail to malfunction
if types wchar_t and wint_t have the same width.  Apparently that is true
on most platforms, but not on recent Cygwin releases.  Remove the cast,
as it seems completely unnecessary (I think it arose from a false analogy
to the need to cast to unsigned char when dealing with the <ctype.h>
functions).  Per bug #8970 from Marco Atzeri.

In the same functions, the code path for C locale with a multibyte encoding
simply ANDed each wide character with 0xFF before passing it to the
corresponding <ctype.h> function.  This could result in false positive
answers for some non-ASCII characters, so use a range test instead.
Noted by me while investigating Marco's complaint.

Also, remove some useless though not actually buggy maskings and casts
in the hand-coded p_isalnum and p_isalpha functions, which evidently
got tested a bit more carefully than the macro-generated functions.

Branch
------
REL9_3_STABLE

Details
-------
http://git.postgresql.org/pg/commitdiff/9beffdcc3ce0f5724de2c95ca98bbcaad45af1d4

Modified Files
--------------
src/backend/tsearch/wparser_def.c |   20 ++++++++++++--------
1 file changed, 12 insertions(+), 8 deletions(-)


В списке pgsql-committers по дате отправления:

Предыдущее
От: Tom Lane
Дата:
Сообщение: pgsql: Fix some wide-character bugs in the text-search parser.
Следующее
От: Tom Lane
Дата:
Сообщение: pgsql: Fix some wide-character bugs in the text-search parser.