mirror of
https://git.postgresql.org/git/postgresql.git
synced 2025-01-18 18:44:06 +08:00
libpq: Add missing newlines to error messages
This commit is contained in:
parent
062e133f6d
commit
45d5ecab49
@ -202,7 +202,7 @@ pqParseInput3(PGconn *conn)
|
||||
if (!conn->result)
|
||||
{
|
||||
appendPQExpBufferStr(&conn->errorMessage,
|
||||
libpq_gettext("out of memory"));
|
||||
libpq_gettext("out of memory\n"));
|
||||
pqSaveErrorResult(conn);
|
||||
}
|
||||
}
|
||||
@ -227,7 +227,7 @@ pqParseInput3(PGconn *conn)
|
||||
if (!conn->result)
|
||||
{
|
||||
appendPQExpBufferStr(&conn->errorMessage,
|
||||
libpq_gettext("out of memory"));
|
||||
libpq_gettext("out of memory\n"));
|
||||
pqSaveErrorResult(conn);
|
||||
}
|
||||
else
|
||||
@ -256,7 +256,7 @@ pqParseInput3(PGconn *conn)
|
||||
if (!conn->result)
|
||||
{
|
||||
appendPQExpBufferStr(&conn->errorMessage,
|
||||
libpq_gettext("out of memory"));
|
||||
libpq_gettext("out of memory\n"));
|
||||
pqSaveErrorResult(conn);
|
||||
}
|
||||
}
|
||||
@ -274,7 +274,7 @@ pqParseInput3(PGconn *conn)
|
||||
if (!conn->result)
|
||||
{
|
||||
appendPQExpBufferStr(&conn->errorMessage,
|
||||
libpq_gettext("out of memory"));
|
||||
libpq_gettext("out of memory\n"));
|
||||
pqSaveErrorResult(conn);
|
||||
}
|
||||
}
|
||||
@ -355,7 +355,7 @@ pqParseInput3(PGconn *conn)
|
||||
if (!conn->result)
|
||||
{
|
||||
appendPQExpBufferStr(&conn->errorMessage,
|
||||
libpq_gettext("out of memory"));
|
||||
libpq_gettext("out of memory\n"));
|
||||
pqSaveErrorResult(conn);
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user