mirror of
https://git.postgresql.org/git/postgresql.git
synced 2024-12-21 08:29:39 +08:00
Result of lo_read() is int, not size_t. Per Oleg Drokin.
This commit is contained in:
parent
c4ebf7b150
commit
57892e74db
@ -12,7 +12,7 @@
|
||||
* by PostgreSQL
|
||||
*
|
||||
* IDENTIFICATION
|
||||
* $Header: /cvsroot/pgsql/src/bin/pg_dump/pg_dump.c,v 1.317 2003/02/13 04:54:16 momjian Exp $
|
||||
* $Header: /cvsroot/pgsql/src/bin/pg_dump/pg_dump.c,v 1.318 2003/02/13 22:56:52 tgl Exp $
|
||||
*
|
||||
*-------------------------------------------------------------------------
|
||||
*/
|
||||
@ -1311,7 +1311,7 @@ dumpBlobs(Archive *AH, char *junkOid, void *junkVal)
|
||||
int i;
|
||||
int loFd;
|
||||
char buf[loBufSize];
|
||||
size_t cnt;
|
||||
int cnt;
|
||||
Oid blobOid;
|
||||
|
||||
if (g_verbose)
|
||||
|
Loading…
Reference in New Issue
Block a user