pgsql: Ensure cleanup in case of early errors in streaming base backups - Mailing list pgsql-committers

From Magnus Hagander
Subject pgsql: Ensure cleanup in case of early errors in streaming base backups
Date
Msg-id E1Wpbfo-0004Eg-1X@gemulon.postgresql.org
Whole thread Raw
List pgsql-committers
Ensure cleanup in case of early errors in streaming base backups

Move the code that sends the initial status information as well as the
calculation of paths inside the ENSURE_ERROR_CLEANUP block. If this code
failed, we would "leak" a counter of number of concurrent backups, thereby
making the system always believe it was in backup mode. This could happen
if the sending failed (which it probably never did given that the small
amount of data to send would never cause a flush). It is very low risk, but
all operations after do_pg_start_backup should be protected.

Branch
------
REL9_2_STABLE

Details
-------
http://git.postgresql.org/pg/commitdiff/dbcde0f4d62815eee8f32c17441db8f5009657db

Modified Files
--------------
src/backend/replication/basebackup.c |    3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)


pgsql-committers by date:

Previous
From: Magnus Hagander
Date:
Subject: pgsql: Ensure cleanup in case of early errors in streaming base backups
Next
From: Tom Lane
Date:
Subject: pgsql: Fix stack clobber in new uuid-ossp code.