Merge
authorvinnie
Fri, 11 Oct 2013 20:47:16 +0100
changeset 20778 26af21e74a8d
parent 20777 ad30bd042ffd (current diff)
parent 20776 6c440a257019 (diff)
child 20779 483371f41926
child 20874 3d0974c9a59e
Merge
--- a/jdk/src/solaris/native/java/lang/java_props_md.c	Fri Oct 11 20:35:00 2013 +0100
+++ b/jdk/src/solaris/native/java/lang/java_props_md.c	Fri Oct 11 20:47:16 2013 +0100
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 1998, 2012, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 1998, 2013, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
@@ -158,6 +158,9 @@
 
     temp = malloc(strlen(lc) + 1);
     if (temp == NULL) {
+#ifdef MACOSX
+        free(lc); // malloced memory
+#endif
         JNU_ThrowOutOfMemoryError(env, NULL);
         return 0;
     }
@@ -172,7 +175,6 @@
          * the encoding - without it, we wouldn't get ISO-8859-15.
          * Therefore, this code section is Solaris-specific.
          */
-        lc = strdup(lc);    /* keep a copy, setlocale trashes original. */
         strcpy(temp, lc);
         p = strstr(temp, "@euro");
         if (p != NULL) {