Re: Backend often crashing

From: Dennis Gearon <gearond(at)cvc(dot)net>
To: Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us>
Cc: Guido Notari <gnotari(at)linkgroup(dot)it>, Postgresql General <pgsql-general(at)postgresql(dot)org>
Subject: Re: Backend often crashing
Date: 2003-04-02 21:37:02
Message-ID: 3E8B57FE.4030800@cvc.net
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-general

WOW,
Open source at it's best. A guy has a problem, goes through all the functions,
delivers the suspects, and another open source worker gets it fixed, in less
than 24 hours.
What a way of life :-)

Tom Lane wrote:
> "Guido Notari" <gnotari(at)linkgroup(dot)it> writes:
>
>>I replaced the occurences of to_ascii with a custum function that calls
>>to_ascii only on the result of a translate, which in turn converts some
>>strange (russian?) characters to plain ascii.
>
>
> Ooohhh ... looking at the source code shows that to_ascii processes one
> byte too many, which would lead to clobbering the next byte of memory,
> which would quite possibly cause your problem.
>
> In 7.2.4, the bug is at line 114 of src/backend/utils/adt/ascii.c:
>
> for (x = src; x <= src_end; x++)
>
> should be
>
> for (x = src; x < src_end; x++)
>
> regards, tom lane
>
>
> ---------------------------(end of broadcast)---------------------------
> TIP 1: subscribe and unsubscribe commands go to majordomo(at)postgresql(dot)org
>

In response to

Responses

Browse pgsql-general by date

  From Date Subject
Next Message Tom Lane 2003-04-02 21:59:06 Re: Backend often crashing
Previous Message Dann Corbit 2003-04-02 21:34:34 Re: images in database