]> granicus.if.org Git - postgresql/commit
Refine memory allocation in ICU conversions
authorPeter Eisentraut <peter_e@gmx.net>
Sat, 24 Jun 2017 13:39:24 +0000 (09:39 -0400)
committerPeter Eisentraut <peter_e@gmx.net>
Sun, 2 Jul 2017 03:08:37 +0000 (23:08 -0400)
commitd8b3c81335600ad3487ca9bd642ef354d62919dc
tree6229778411a8570c589425d6144575f2dc6fd94e
parentb0f069d931f0a3d4a39aeeb230baf2f2b18cb3c3
Refine memory allocation in ICU conversions

The simple calculations done to estimate the size of the output buffers
for ucnv_fromUChars() and ucnv_toUChars() could overflow int32_t for
large strings.  To avoid that, go the long way and run the function
first without an output buffer to get the correct output buffer size
requirement.
src/backend/utils/adt/pg_locale.c