Re: PG_RETURN_TEXT_P crash server process

Поиск
Список
Период
Сортировка
От Pavel Stehule
Тема Re: PG_RETURN_TEXT_P crash server process
Дата
Msg-id Pine.LNX.4.44.0211121429250.13247-100000@kix.fsv.cvut.cz
обсуждение исходный текст
Ответ на Re: PG_RETURN_TEXT_P crash server process  (Tom Lane <tgl@sss.pgh.pa.us>)
Ответы Re: PG_RETURN_TEXT_P crash server process (solved)  (Pavel Stehule <stehule@kix.fsv.cvut.cz>)
Список pgsql-bugs
You have true. When I modify code on

 long ma = ((*saved_chars + l + VARHDRSZ) / page_size + 1) * page_size;
 *allocated_free = ma - *saved_chars - VARHDRSZ;

my function works well. Thank you wery much. One night I lost with this
:->

On Tue, 12 Nov 2002, Tom Lane wrote:

> Pavel Stehule <stehule@kix.fsv.cvut.cz> writes:
> > I found some problem with PG_RETURN_TEXT_P.
>
> Fix your code to not scribble on memory that doesn't belong to it,
> and all will be well.  I can see at least two buffer-overrun bugs,
> and there may be more:
>
>       txtn = (text *) palloc (ma);    -- forgot to add VARHDRSZ
>
>   strcpy (*str_pointer, str);        -- copies one byte too many
>
>             regards, tom lane
>
> ---------------------------(end of broadcast)---------------------------
> TIP 1: subscribe and unsubscribe commands go to majordomo@postgresql.org
>

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

Предыдущее
От: Tom Lane
Дата:
Сообщение: Re: PG_RETURN_TEXT_P crash server process
Следующее
От: "John Liu"
Дата:
Сообщение: bug?