Re: Text search segmentation fault - Mailing list pgsql-general

From Tom Lane
Subject Re: Text search segmentation fault
Date
Msg-id 25986.1233248719@sss.pgh.pa.us
Whole thread Raw
In response to Re: Text search segmentation fault  (Teodor Sigaev <teodor@sigaev.ru>)
List 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 by date:

Previous
From: Jason Long
Date:
Subject: Re: Pet Peeves?
Next
From: Ivan Sergio Borgonovo
Date:
Subject: ssl to more than one server