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
commit1a9356f657e19ae1abeb0ffea0b7edaf69e315cb (patch)
tree649bd19722e175c1f568bb370a6d428416cfb615 /src/backend/executor/nodeModifyTable.c
parentba019b4dacf637459148f1327f9345bff031dfe2 (diff)
downloadpostgresql-1a9356f657e19ae1abeb0ffea0b7edaf69e315cb.tar.gz
postgresql-1a9356f657e19ae1abeb0ffea0b7edaf69e315cb.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