Merge
authorlana
Mon, 08 Oct 2012 15:38:19 -0700
changeset 14036 d5752c9082a1
parent 13947 5e3adc681779 (current diff)
parent 14035 1f730fd430b5 (diff)
child 14037 e4251351a6dd
Merge
--- a/corba/src/share/classes/sun/rmi/rmic/iiop/StubGenerator.java	Wed Jul 05 18:25:14 2017 +0200
+++ b/corba/src/share/classes/sun/rmi/rmic/iiop/StubGenerator.java	Mon Oct 08 15:38:19 2012 -0700
@@ -1631,7 +1631,7 @@
 
         // Write data members...
         p.pln();
-        p.pln("private " + getName(theType) + " target = null;");
+        p.pln("volatile private " + getName(theType) + " target = null;");
         p.pln();
 
         // Write the ids...
@@ -1695,6 +1695,10 @@
 
         if (remoteMethods.length > 0) {
             p.plnI("try {");
+            p.pln(getName(theType) + " target = this.target;");
+            p.plnI("if (target == null) {");
+            p.pln("throw new java.io.IOException();");
+            p.pOln("}");
             p.plnI(idExtInputStream + " "+in+" = ");
             p.pln("(" + idExtInputStream + ") "+_in+";");
             p.pO();