jdk/src/solaris/native/java/lang/java_props_md.c
changeset 7248 6a95f692e203
parent 7018 154795ed10de
child 7668 d4a77089c587
--- a/jdk/src/solaris/native/java/lang/java_props_md.c	Wed Nov 17 01:02:20 2010 +0900
+++ b/jdk/src/solaris/native/java/lang/java_props_md.c	Tue Nov 16 10:47:01 2010 -0800
@@ -217,15 +217,18 @@
     /* Normalize the language name */
     if (std_language != NULL) {
         *std_language = "en";
-        if (language != NULL) {
-            mapLookup(language_names, language, std_language);
+        if (language != NULL && mapLookup(language_names, language, std_language) == 0) {
+            *std_language = malloc(strlen(language)+1);
+            strcpy(*std_language, language);
         }
     }
 
     /* Normalize the country name */
     if (std_country != NULL && country != NULL) {
-        *std_country = country;
-        mapLookup(country_names, country, std_country);
+        if (mapLookup(country_names, country, std_country) == 0) {
+            *std_country = malloc(strlen(country)+1);
+            strcpy(*std_country, country);
+        }
     }
 
     /* Normalize the script and variant name.  Note that we only use