Big disconnect_and_exit cleanup in pg_basebackup

Поиск
Список
Период
Сортировка
От Boszormenyi Zoltan
Тема Big disconnect_and_exit cleanup in pg_basebackup
Дата
Msg-id 50E45DB7.3020306@cybertec.at
обсуждение исходный текст
Ответы Re: Big disconnect_and_exit cleanup in pg_basebackup  (Boszormenyi Zoltan <zb@cybertec.at>)
Список pgsql-hackers
Hi,

the previously sent "factor out pg_malloc and friends" patch
may call exit() in case of OOM during allocation and as a consequence,
PQfinish() won't get called, leaving an "unexpected EOF from client"
in the log.

Let's close this annoyance in pg_basebackup. The attached patch does
the following:

- adds a PQfinish() (actually PQfinishSafe()) call that was just posted
   in another thread
- replace all PQfinish() and PQclear() with their *Safe counterpart so
   a normal execution won't result in a crash because of calling PQfinish()
   on a stale pointer
- kill the disconnect_and_exit() macro, replace it with plain exit(),
   the atexit callback does the disconnect anyway.

Best regards,
Zoltán Böszörményi

--
----------------------------------
Zoltán Böszörményi
Cybertec Schönig & Schönig GmbH
Gröhrmühlgasse 26
A-2700 Wiener Neustadt, Austria
Web: http://www.postgresql-support.de
      http://www.postgresql.at/


Вложения

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

Предыдущее
От: Fabrízio de Royes Mello
Дата:
Сообщение: Minor fix in 'clean' action of 'src/backend/Makefile'
Следующее
От: Heikki Linnakangas
Дата:
Сообщение: Re: Minor fix in 'clean' action of 'src/backend/Makefile'