diff options
author | Hans-Joachim Lankenau <hjs@openoffice.org> | 2010-12-17 17:08:13 +0100 |
---|---|---|
committer | Hans-Joachim Lankenau <hjs@openoffice.org> | 2010-12-17 17:08:13 +0100 |
commit | d6e1cfbbba8c44663a7bf0f87c5bb03cb256d6d3 (patch) | |
tree | ef164f30128a5c8c6db428681a560e62c35fca5f | |
parent | 8864461d266e7fd09dd2a91b5791500001df264c (diff) | |
parent | f46e4f27f7aa0e093ca92f3326dc4d83a8bd0638 (diff) |
CWS-TOOLING: integrate CWS fwk160ooo/DEV300_m96
-rw-r--r-- | sal/osl/unx/nlsupport.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sal/osl/unx/nlsupport.c b/sal/osl/unx/nlsupport.c index 3cce0e6b0..90b3ed3cf 100644 --- a/sal/osl/unx/nlsupport.c +++ b/sal/osl/unx/nlsupport.c @@ -844,9 +844,9 @@ void _imp_getProcessLocale( rtl_Locale ** ppLocale ) if ( NULL == locale ) { - locale = (char *)malloc( 20 ); + locale = (char *)malloc( 128 ); if ( locale ) - macosx_getLocale( locale, 20 ); + macosx_getLocale( locale, 128 ); else fprintf( stderr, "nlsupport.c: locale allocation returned NULL!\n" ); } |