aboutsummaryrefslogtreecommitdiff
path: root/src/backend/utils/adt/arrayfuncs.c
diff options
context:
space:
mode:
authorAlvaro Herrera <alvherre@alvh.no-ip.org>2015-03-16 22:35:45 -0300
committerAlvaro Herrera <alvherre@alvh.no-ip.org>2015-03-16 22:35:45 -0300
commita190738457353ddb60743e45972f6fe50a75ee77 (patch)
treebab2462453d028daf4cd186df14f7b77ef78dc7e /src/backend/utils/adt/arrayfuncs.c
parenta61fd5334eb1040d0dcec0368702398a5b49152c (diff)
downloadpostgresql-a190738457353ddb60743e45972f6fe50a75ee77.tar.gz
postgresql-a190738457353ddb60743e45972f6fe50a75ee77.zip
Fix out-of-array-bounds compiler warning
Since the array length check is using a post-increment operator, the compiler complains that there's a potential write to one element beyond the end of the array. This is not possible currently: the only path to this function is through pg_get_object_address(), which already verifies that the input array is no more than two elements in length. Still, a bug is a bug. No idea why my compiler doesn't complain about this ... Pointed out by Dead Rasheed and Peter Eisentraut
Diffstat (limited to 'src/backend/utils/adt/arrayfuncs.c')
0 files changed, 0 insertions, 0 deletions