]> granicus.if.org Git - postgresql/commit
Reset properly errno before calling write()
authorMichael Paquier <michael@paquier.xyz>
Sat, 4 Aug 2018 20:31:18 +0000 (05:31 +0900)
committerMichael Paquier <michael@paquier.xyz>
Sat, 4 Aug 2018 20:31:18 +0000 (05:31 +0900)
commit5a23c74b63ec9f63c648f79b13a900c37332ee55
tree3d8c59682c7f4d43a57ad29c2712c285532002c7
parente61f21b921aebc0870d3ac47f77fc17e75e2fefb
Reset properly errno before calling write()

6cb3372 enforces errno to ENOSPC when less bytes than what is expected
have been written when it is unset, though it forgot to properly reset
errno before doing a system call to write(), causing errno to
potentially come from a previous system call.

Reported-by: Tom Lane
Author: Michael Paquier
Reviewed-by: Tom Lane
Discussion: https://postgr.es/m/31797.1533326676@sss.pgh.pa.us
src/backend/access/heap/rewriteheap.c
src/backend/access/transam/twophase.c
src/backend/replication/logical/origin.c
src/backend/replication/logical/reorderbuffer.c
src/backend/replication/logical/snapbuild.c
src/backend/replication/slot.c
src/bin/pg_basebackup/walmethods.c