]> granicus.if.org Git - postgresql/commit
Prevent using strncpy with src == dest in TupleDescInitEntry.
authorTom Lane <tgl@sss.pgh.pa.us>
Tue, 29 Oct 2013 00:49:28 +0000 (20:49 -0400)
committerTom Lane <tgl@sss.pgh.pa.us>
Tue, 29 Oct 2013 00:49:28 +0000 (20:49 -0400)
commit27deb0480c9a9b437d6e77685c45d9ced09ba1ec
treeb734e4734fb8c68f492d66ffa686319e60f627e9
parentbd04dfba9f7e10274a6b2558e57e274403161373
Prevent using strncpy with src == dest in TupleDescInitEntry.

The C and POSIX standards state that strncpy's behavior is undefined when
source and destination areas overlap.  While it remains dubious whether any
implementations really misbehave when the pointers are exactly equal, some
platforms are now starting to force the issue by complaining when an
undefined call occurs.  (In particular OS X 10.9 has been seen to dump core
here, though the exact set of circumstances needed to trigger that remain
elusive.  Similar behavior can be expected to be optional on Linux and
other platforms in the near future.)  So tweak the code to explicitly do
nothing when nothing need be done.

Back-patch to all active branches.  In HEAD, this also lets us get rid of
an exception in valgrind.supp.

Per discussion of a report from Matthias Schmitt.
src/backend/access/common/tupdesc.c