[COMMITTERS] pgsql: Be more careful about signed vs. unsigned char - Mailing list pgsql-committers

From Stephen Frost
Subject [COMMITTERS] pgsql: Be more careful about signed vs. unsigned char
Date
Msg-id E1coMnY-0005iY-HT@gemulon.postgresql.org
Whole thread Raw
List 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 by date:

Previous
From: Stephen Frost
Date:
Subject: Re: [COMMITTERS] pgsql: Clean up overly paranoid checks in mac8.c
Next
From: Alvaro Herrera
Date:
Subject: [COMMITTERS] pgsql: Fix ancient get_object_address_opf_member bug