aboutsummaryrefslogtreecommitdiff
path: root/src/backend/executor/nodeModifyTable.c
diff options
context:
space:
mode:
authorTom Lane <tgl@sss.pgh.pa.us>2023-03-01 11:30:17 -0500
committerTom Lane <tgl@sss.pgh.pa.us>2023-03-01 11:30:17 -0500
commiteae09137d53ecb9cb4c1ba7624723f1c1cbebeec (patch)
treee245ae2946fd784b5ace7772ac6937f06c7544cb /src/backend/executor/nodeModifyTable.c
parentb5784e6a5ecd81468462a91486266adc87d03110 (diff)
downloadpostgresql-eae09137d53ecb9cb4c1ba7624723f1c1cbebeec.tar.gz
postgresql-eae09137d53ecb9cb4c1ba7624723f1c1cbebeec.zip
Avoid fetching one past the end of translate()'s "to" parameter.
This is usually harmless, but if you were very unlucky it could provoke a segfault due to the "to" string being right up against the end of memory. Found via valgrind testing (so we might've found it earlier, except that our regression tests lacked any exercise of translate()'s deletion feature). Fix by switching the order of the test-for-end-of-string and advance-pointer steps. While here, compute "to_ptr + tolen" just once. (Smarter compilers might figure that out for themselves, but let's just make sure.) Report and fix by Daniil Anisimov, in bug #17816. Discussion: https://postgr.es/m/17816-70f3d2764e88a108@postgresql.org
Diffstat (limited to 'src/backend/executor/nodeModifyTable.c')
0 files changed, 0 insertions, 0 deletions