mirror of
https://github.com/postgres/postgres.git
synced 2025-07-31 22:04:40 +03:00
Fix thinko in pg_read_file: testing for negative result is not the way
to determine whether fread() failed.
This commit is contained in:
@ -9,7 +9,7 @@
|
|||||||
* Author: Andreas Pflug <pgadmin@pse-consulting.de>
|
* Author: Andreas Pflug <pgadmin@pse-consulting.de>
|
||||||
*
|
*
|
||||||
* IDENTIFICATION
|
* IDENTIFICATION
|
||||||
* $PostgreSQL: pgsql/src/backend/utils/adt/genfile.c,v 1.7 2005/10/15 02:49:28 momjian Exp $
|
* $PostgreSQL: pgsql/src/backend/utils/adt/genfile.c,v 1.8 2005/10/15 19:47:09 tgl Exp $
|
||||||
*
|
*
|
||||||
*-------------------------------------------------------------------------
|
*-------------------------------------------------------------------------
|
||||||
*/
|
*/
|
||||||
@ -134,7 +134,7 @@ pg_read_file(PG_FUNCTION_ARGS)
|
|||||||
|
|
||||||
nbytes = fread(VARDATA(buf), 1, (size_t) bytes_to_read, file);
|
nbytes = fread(VARDATA(buf), 1, (size_t) bytes_to_read, file);
|
||||||
|
|
||||||
if (nbytes < 0)
|
if (ferror(file))
|
||||||
ereport(ERROR,
|
ereport(ERROR,
|
||||||
(errcode_for_file_access(),
|
(errcode_for_file_access(),
|
||||||
errmsg("could not read file \"%s\": %m", filename)));
|
errmsg("could not read file \"%s\": %m", filename)));
|
||||||
|
Reference in New Issue
Block a user