mirror of
https://git.postgresql.org/git/postgresql.git
synced 2024-12-21 08:29:39 +08:00
Don't use 0 as a spelling of NULL.
This commit is contained in:
parent
d938e8b0f4
commit
bf2f5d9463
@ -8,7 +8,7 @@
|
|||||||
*
|
*
|
||||||
*
|
*
|
||||||
* IDENTIFICATION
|
* IDENTIFICATION
|
||||||
* $Header: /cvsroot/pgsql/src/interfaces/libpq/fe-exec.c,v 1.148 2003/09/22 00:23:35 petere Exp $
|
* $Header: /cvsroot/pgsql/src/interfaces/libpq/fe-exec.c,v 1.149 2003/10/02 14:47:44 tgl Exp $
|
||||||
*
|
*
|
||||||
*-------------------------------------------------------------------------
|
*-------------------------------------------------------------------------
|
||||||
*/
|
*/
|
||||||
@ -2331,12 +2331,15 @@ PQunescapeBytea(const unsigned char *strtext, size_t *retbuflen)
|
|||||||
}
|
}
|
||||||
buflen = j; /* buflen is the length of the unquoted
|
buflen = j; /* buflen is the length of the unquoted
|
||||||
* data */
|
* data */
|
||||||
|
|
||||||
|
/* Shrink the buffer to be no larger than necessary */
|
||||||
tmpbuf = realloc(buffer, buflen);
|
tmpbuf = realloc(buffer, buflen);
|
||||||
|
|
||||||
|
/* It would only be a very brain-dead realloc that could fail, but... */
|
||||||
if (!tmpbuf)
|
if (!tmpbuf)
|
||||||
{
|
{
|
||||||
free(buffer);
|
free(buffer);
|
||||||
return 0;
|
return NULL;
|
||||||
}
|
}
|
||||||
|
|
||||||
*retbuflen = buflen;
|
*retbuflen = buflen;
|
||||||
|
Loading…
Reference in New Issue
Block a user