From 048caa5560da33d63bbcbb2063c8ecd48994c99b Mon Sep 17 00:00:00 2001 From: Magnus Hagander <magnus@hagander.net> Date: Fri, 18 May 2018 17:53:20 +0200 Subject: [PATCH] Fix error message on short read of pg_control Instead of saying "error: success", indicate that we got a working read but it was too short. --- src/backend/access/transam/xlog.c | 16 ++++++++++++---- 1 file changed, 12 insertions(+), 4 deletions(-) diff --git a/src/backend/access/transam/xlog.c b/src/backend/access/transam/xlog.c index 218f98d29f..618d427377 100644 --- a/src/backend/access/transam/xlog.c +++ b/src/backend/access/transam/xlog.c @@ -3582,6 +3582,7 @@ ReadControlFile(void) { pg_crc32 crc; int fd; + int r; /* * Read data... @@ -3595,10 +3596,17 @@ ReadControlFile(void) errmsg("could not open control file \"%s\": %m", XLOG_CONTROL_FILE))); - if (read(fd, ControlFile, sizeof(ControlFileData)) != sizeof(ControlFileData)) - ereport(PANIC, - (errcode_for_file_access(), - errmsg("could not read from control file: %m"))); + r = read(fd, ControlFile, sizeof(ControlFileData)); + if (r != sizeof(ControlFileData)) + { + if (r < 0) + ereport(PANIC, + (errcode_for_file_access(), + errmsg("could not read from control file: %m"))); + else + ereport(PANIC, + (errmsg("could not read from control file: read %d bytes, expected %d", r, (int) sizeof(ControlFileData)))); + } close(fd); -- 2.40.0