]> granicus.if.org Git - postgresql/commit
Fix PGLC_localeconv() to handle errors better.
authorTom Lane <tgl@sss.pgh.pa.us>
Mon, 21 Nov 2016 23:21:56 +0000 (18:21 -0500)
committerTom Lane <tgl@sss.pgh.pa.us>
Mon, 21 Nov 2016 23:21:56 +0000 (18:21 -0500)
commit7e8cc250ac500740f17e229b80e98fba8e52b1e3
treec0005c84d3ec8b076255fc3bd2d100a349163ea9
parent13aa9af378740795572294a800975254a969e890
Fix PGLC_localeconv() to handle errors better.

The code was intentionally not very careful about leaking strdup'd
strings in case of an error.  That was forgivable probably, but it
also failed to notice strdup() failures, which could lead to subsequent
null-pointer-dereference crashes, since many callers unsurprisingly
didn't check for null pointers in the struct lconv fields.  An even
worse problem is that it could throw error while we were setlocale'd
to a non-C locale, causing unwanted behavior in subsequent libc calls.

Rewrite to ensure that we cannot throw elog(ERROR) until after we've
restored the previous locale settings, or at least attempted to.
(I'm sorely tempted to make restore failure be a FATAL error, but
will refrain for the moment.)  Having done that, it's not much more
work to ensure that we clean up strdup'd storage on the way out, too.

This code is substantially the same in all supported branches, so
back-patch all the way.

Michael Paquier and Tom Lane

Discussion: <CAB7nPqRMbGqa_mesopcn4MPyTs34eqtVEK7ELYxvvV=oqS00YA@mail.gmail.com>
src/backend/utils/adt/pg_locale.c