Skip to content

Commit ddb9a5c

Browse files
committedJan 18, 2023
Merge
2 parents 014f21f + 056d5a7 commit ddb9a5c

File tree

83 files changed

+1966
-1899
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

83 files changed

+1966
-1899
lines changed
 

‎corba/src/share/classes/com/sun/corba/se/impl/orbutil/ORBConstants.java

+2
Original file line numberDiff line numberDiff line change
@@ -317,6 +317,8 @@ public static int makePersistent( int scid )
317317
public static final String DYNAMIC_STUB_FACTORY_FACTORY_CLASS =
318318
SUN_PREFIX + "ORBDynamicStubFactoryFactoryClass" ;
319319

320+
public static final String ALLOW_DESERIALIZE_OBJECT = SUN_PREFIX + "ORBAllowDeserializeObject" ;
321+
320322
// Constants for NameService properties ************************************
321323

322324
public static final int DEFAULT_INITIAL_PORT = 900;

‎corba/src/share/classes/com/sun/tools/corba/se/idl/toJavaPortable/Stub.java

+5
Original file line numberDiff line numberDiff line change
@@ -342,6 +342,11 @@ protected void writeSerializationMethods ()
342342
stream.println (" private void readObject (java.io.ObjectInputStream s) throws java.io.IOException");
343343
stream.println (" {");
344344
stream.println (" String str = s.readUTF ();");
345+
if ("DynAnyFactory".equals (i.name ())) {
346+
stream.println (" if (!str.startsWith(com.sun.corba.se.impl.orbutil.ORBConstants.STRINGIFY_PREFIX) &&");
347+
stream.println (" !Boolean.getBoolean(com.sun.corba.se.impl.orbutil.ORBConstants.ALLOW_DESERIALIZE_OBJECT))");
348+
stream.println (" throw new java.io.InvalidObjectException(\"IOR: expected\");");
349+
}
345350
stream.println (" String[] args = null;");
346351
stream.println (" java.util.Properties props = null;");
347352
stream.println (" org.omg.CORBA.ORB orb = org.omg.CORBA.ORB.init (args, props);");

0 commit comments

Comments
 (0)
Please sign in to comment.