Re: Fix for Win32 division involving INT_MIN

Поиск
Список
Период
Сортировка
От Tom Lane
Тема Re: Fix for Win32 division involving INT_MIN
Дата
Msg-id 4877.1149819484@sss.pgh.pa.us
обсуждение исходный текст
Ответ на Fix for Win32 division involving INT_MIN  (Bruce Momjian <pgman@candle.pha.pa.us>)
Ответы Re: Fix for Win32 division involving INT_MIN  (Bruce Momjian <pgman@candle.pha.pa.us>)
Список pgsql-patches
Bruce Momjian <pgman@candle.pha.pa.us> writes:
> With no Win32 exception detection code in sight, I propose the following
> patch to prevent server crashes for unusual INT_MIN integer division.

The overflow code tries hard to avoid assuming it knows what INT_MIN and
INT_MAX are --- this is maybe not so important for int4 but it is for
int8 (because of our support for int8-less machines).  I don't
immediately see how to make this test without assuming you know the
value of INT_MIN, but we ought to try to come up with one.

We do see funny behavior on Intel chips even without Windows, so it'd
be better to not #ifdef WIN32 but use the same overflow test for
everyone.

I would imagine the same problem arises with int8, has anyone checked?
Also, the overflow tests in the intNmul routines seem vulnerable.

            regards, tom lane

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

Предыдущее
От: Bruce Momjian
Дата:
Сообщение: Fix for Win32 division involving INT_MIN
Следующее
От: Bruce Momjian
Дата:
Сообщение: Re: Fix for Win32 division involving INT_MIN