8077308: Fix warning: increase O_BUFLEN in ostream.hpp -- output truncated
authordholmes
Fri, 17 Apr 2015 22:50:10 -0400
changeset 30251 9b05c9cc4698
parent 30250 58f6fc816aae
child 30252 b9faf31ff015
8077308: Fix warning: increase O_BUFLEN in ostream.hpp -- output truncated Reviewed-by: dholmes, hseigel Contributed-by: Andrew Haley <aph@redhat.com>
hotspot/src/share/vm/utilities/ostream.cpp
--- a/hotspot/src/share/vm/utilities/ostream.cpp	Fri Apr 17 23:55:04 2015 +0000
+++ b/hotspot/src/share/vm/utilities/ostream.cpp	Fri Apr 17 22:50:10 2015 -0400
@@ -978,8 +978,13 @@
       xs->head("properties");
       // Print it as a java-style property list.
       // System properties don't generally contain newlines, so don't bother with unparsing.
+      outputStream *text = xs->text();
       for (SystemProperty* p = Arguments::system_properties(); p != NULL; p = p->next()) {
-        xs->text()->print_cr("%s=%s", p->key(), p->value());
+        // Print in two stages to avoid problems with long
+        // keys/values.
+        text->print_raw(p->key());
+        text->put('=');
+        text->print_raw_cr(p->value());
       }
       xs->tail("properties");
     }