Fix a couple of places that would loop forever if attempts to read a stdio file
set ferror() but never set feof(). This is known to be the case for recent glibc when trying to read a directory as a file, and might be true for other platforms/cases too. Per report from Ed L. (There is more that we ought to do about his report, but this is one easily identifiable issue.)
This commit is contained in:
parent
8b33d83cc5
commit
f82e8e7f6f
@ -8,7 +8,7 @@
|
|||||||
*
|
*
|
||||||
*
|
*
|
||||||
* IDENTIFICATION
|
* IDENTIFICATION
|
||||||
* $Header: /cvsroot/pgsql/src/backend/commands/copy.c,v 1.213.2.3 2006/05/21 20:06:43 tgl Exp $
|
* $Header: /cvsroot/pgsql/src/backend/commands/copy.c,v 1.213.2.4 2010/03/03 20:31:50 tgl Exp $
|
||||||
*
|
*
|
||||||
*-------------------------------------------------------------------------
|
*-------------------------------------------------------------------------
|
||||||
*/
|
*/
|
||||||
@ -381,7 +381,7 @@ CopyGetData(void *databuf, int datasize)
|
|||||||
{
|
{
|
||||||
case COPY_FILE:
|
case COPY_FILE:
|
||||||
fread(databuf, datasize, 1, copy_file);
|
fread(databuf, datasize, 1, copy_file);
|
||||||
if (feof(copy_file))
|
if (feof(copy_file) || ferror(copy_file))
|
||||||
fe_eof = true;
|
fe_eof = true;
|
||||||
break;
|
break;
|
||||||
case COPY_OLD_FE:
|
case COPY_OLD_FE:
|
||||||
|
@ -10,7 +10,7 @@
|
|||||||
*
|
*
|
||||||
*
|
*
|
||||||
* IDENTIFICATION
|
* IDENTIFICATION
|
||||||
* $Header: /cvsroot/pgsql/src/backend/libpq/hba.c,v 1.116.2.4 2004/11/17 19:54:34 tgl Exp $
|
* $Header: /cvsroot/pgsql/src/backend/libpq/hba.c,v 1.116.2.5 2010/03/03 20:31:50 tgl Exp $
|
||||||
*
|
*
|
||||||
*-------------------------------------------------------------------------
|
*-------------------------------------------------------------------------
|
||||||
*/
|
*/
|
||||||
@ -317,7 +317,7 @@ tokenize_file(FILE *file)
|
|||||||
int line_number = 1;
|
int line_number = 1;
|
||||||
char *buf;
|
char *buf;
|
||||||
|
|
||||||
while (!feof(file))
|
while (!feof(file) && !ferror(file))
|
||||||
{
|
{
|
||||||
buf = next_token_expand(file);
|
buf = next_token_expand(file);
|
||||||
|
|
||||||
|
@ -8,7 +8,7 @@
|
|||||||
*
|
*
|
||||||
*
|
*
|
||||||
* IDENTIFICATION
|
* IDENTIFICATION
|
||||||
* $Header: /cvsroot/pgsql/src/interfaces/libpq/fe-connect.c,v 1.263.2.6 2007/07/23 18:10:13 mha Exp $
|
* $Header: /cvsroot/pgsql/src/interfaces/libpq/fe-connect.c,v 1.263.2.7 2010/03/03 20:31:50 tgl Exp $
|
||||||
*
|
*
|
||||||
*-------------------------------------------------------------------------
|
*-------------------------------------------------------------------------
|
||||||
*/
|
*/
|
||||||
@ -3159,7 +3159,7 @@ PasswordFromFile(char *hostname, char *port, char *dbname, char *username)
|
|||||||
if (fp == NULL)
|
if (fp == NULL)
|
||||||
return NULL;
|
return NULL;
|
||||||
|
|
||||||
while (!feof(fp))
|
while (!feof(fp) && !ferror(fp))
|
||||||
{
|
{
|
||||||
char *t = buf,
|
char *t = buf,
|
||||||
*ret;
|
*ret;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user