]> granicus.if.org Git - postgresql/commit
Avoid multiple free_struct_lconv() calls on same data.
authorTom Lane <tgl@sss.pgh.pa.us>
Mon, 29 Feb 2016 04:39:20 +0000 (23:39 -0500)
committerTom Lane <tgl@sss.pgh.pa.us>
Mon, 29 Feb 2016 04:40:35 +0000 (23:40 -0500)
commit7d6c58aa1114a6482722c125d44b4eb15fe5df18
treed71e811b7a4c1656a980698d6b0185e97a2b42c9
parent5d312ef1b2b38d0db90394691694238194172e84
Avoid multiple free_struct_lconv() calls on same data.

A failure partway through PGLC_localeconv() led to a situation where
the next call would call free_struct_lconv() a second time, leading
to free() on already-freed strings, typically leading to a core dump.
Add a flag to remember whether we need to do that.

Per report from Thom Brown.  His example case only provokes the failure
as far back as 9.4, but nonetheless this code is obviously broken, so
back-patch to all supported branches.
src/backend/utils/adt/pg_locale.c