]> git.ipfire.org Git - thirdparty/postgresql.git/commit
Avoid low-probability crash on out-of-memory.
authorTom Lane <tgl@sss.pgh.pa.us>
Thu, 5 Dec 2024 17:54:41 +0000 (12:54 -0500)
committerTom Lane <tgl@sss.pgh.pa.us>
Thu, 5 Dec 2024 17:54:41 +0000 (12:54 -0500)
commitd24eb0e91f3f7fc54ed4e56d93b26e2f8d52c1ce
treeb12e5b5755683237dce2d2bd2228de46dbbf35a1
parent7d0b91a28421a7928fb45e10b31e7f1f81842ba7
Avoid low-probability crash on out-of-memory.

check_restrict_nonsystem_relation_kind() correctly uses guc_malloc()
in v16 and later.  But in older branches it must use malloc()
directly, and it forgot to check for failure return.
Faulty backpatching of 66e94448a.

Karina Litskevich

Discussion: https://postgr.es/m/CACiT8iZ=atkguKVbpN4HmJFMb4+T9yEowF5JuPZG8W+kkZ9L6w@mail.gmail.com
src/backend/tcop/postgres.c