mirror of
https://github.com/postgres/postgres.git
synced 2025-06-26 12:21:12 +03:00
Fix allocation check to test the right variable
The memory allocation for cancelConn->be_cancel_key was accidentally checking the be_cancel_key member in the conn object instead of the one in cancelConn. Author: Ranier Vilela <ranier.vf@gmail.com> Reviewed-by: Daniel Gustafsson <daniel@yesql.se> Discussion: https://postgr.es/m/CAEudQAq4ySDR6dsg9xwurBXwud02hX7XCOZZAcZx-JMn6A06nA@mail.gmail.com
This commit is contained in:
@ -114,7 +114,7 @@ PQcancelCreate(PGconn *conn)
|
|||||||
if (conn->be_cancel_key != NULL)
|
if (conn->be_cancel_key != NULL)
|
||||||
{
|
{
|
||||||
cancelConn->be_cancel_key = malloc(conn->be_cancel_key_len);
|
cancelConn->be_cancel_key = malloc(conn->be_cancel_key_len);
|
||||||
if (!conn->be_cancel_key)
|
if (cancelConn->be_cancel_key == NULL)
|
||||||
goto oom_error;
|
goto oom_error;
|
||||||
memcpy(cancelConn->be_cancel_key, conn->be_cancel_key, conn->be_cancel_key_len);
|
memcpy(cancelConn->be_cancel_key, conn->be_cancel_key, conn->be_cancel_key_len);
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user