[COMMITTERS] pgsql: Be more careful about signed vs. unsigned char

Поиск
Список
Период
Сортировка
От Stephen Frost
Тема [COMMITTERS] pgsql: Be more careful about signed vs. unsigned char
Дата
Msg-id E1coMnY-0005iY-HT@gemulon.postgresql.org
обсуждение исходный текст
Список pgsql-committers
Be more careful about signed vs. unsigned char

The buildfarm has reminded me that not all systems consider char to be
signed and we need to be explicit.  Adjust the various bits of mac8.c
for what we intend, mostly using casts to unsigned char as suggested by
Tom, and adjust the tests for valid input accordingly.  Explicitly make
the hexlookup table signed as it's useful to use -1 there to indicate an
invalid value.

Branch
------
master

Details
-------
http://git.postgresql.org/pg/commitdiff/cccbddeb1483b85f1853a29dc3b6464647b91eee

Modified Files
--------------
src/backend/utils/adt/mac8.c | 28 ++++++++++++++--------------
1 file changed, 14 insertions(+), 14 deletions(-)


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

Предыдущее
От: Stephen Frost
Дата:
Сообщение: Re: [COMMITTERS] pgsql: Clean up overly paranoid checks in mac8.c
Следующее
От: Alvaro Herrera
Дата:
Сообщение: [COMMITTERS] pgsql: Fix ancient get_object_address_opf_member bug