1
0
mirror of https://github.com/postgres/postgres.git synced 2025-06-30 21:42:05 +03:00

Suppress remaining -Waddress warnings from recent gcc versions.

Still an exercise in satisfying pedants.
This commit is contained in:
Tom Lane
2011-10-18 21:44:23 -04:00
parent aa90e148ca
commit e331c60ea7
3 changed files with 11 additions and 3 deletions

View File

@ -829,7 +829,7 @@ PQconndefaults(void)
PQconninfoOption *connOptions;
initPQExpBuffer(&errorBuf);
if (PQExpBufferBroken(&errorBuf))
if (PQExpBufferDataBroken(errorBuf))
return NULL; /* out of memory already :-( */
connOptions = conninfo_parse("", &errorBuf, true);
termPQExpBuffer(&errorBuf);
@ -3967,7 +3967,7 @@ PQconninfoParse(const char *conninfo, char **errmsg)
if (errmsg)
*errmsg = NULL; /* default */
initPQExpBuffer(&errorBuf);
if (PQExpBufferBroken(&errorBuf))
if (PQExpBufferDataBroken(errorBuf))
return NULL; /* out of memory already :-( */
connOptions = conninfo_parse(conninfo, &errorBuf, false);
if (connOptions == NULL && errmsg)