Re: Text search segmentation fault

Поиск
Список
Период
Сортировка
От Tom Lane
Тема Re: Text search segmentation fault
Дата
Msg-id 25986.1233248719@sss.pgh.pa.us
обсуждение исходный текст
Ответ на Re: Text search segmentation fault  (Teodor Sigaev <teodor@sigaev.ru>)
Список pgsql-general
Teodor Sigaev <teodor@sigaev.ru> writes:
> Tom Lane wrote:
>> Hmm, seems it's not so much a "64 bit" error as a "signed vs unsigned
>> char" issue?

> Yes, but I don't understand why it worked in 32-bit box.

You were casting to unsigned int.  So the offset added to the base
pointer for, say, 255 in the char would be equivalent to -1 on a 32-bit
box, or 0xFFFFFFFF on 64-bit.  The latter would likely provoke SIGSEGV
due to indexing out of the allocated process workspace, the former just
in scribbling on the byte adjacent to where it should have.  Still
broken, but not a segfault.

            regards, tom lane

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

Предыдущее
От: Jason Long
Дата:
Сообщение: Re: Pet Peeves?
Следующее
От: Ivan Sergio Borgonovo
Дата:
Сообщение: ssl to more than one server