5036554: unmarshal error on CORBA alias type in CORBA any

Reviewed-by: chegar, smarks
This commit is contained in:
Sean Coffey 2013-10-23 16:45:30 +01:00
parent f28903e129
commit b8a1a58670

View File

@ -580,7 +580,7 @@ public class AnyImpl extends Any
java.lang.Object[] objholder = new java.lang.Object[1];
objholder[0] = object;
long[] longholder = new long[1];
TCUtility.unmarshalIn(in, typeCode, longholder, objholder);
TCUtility.unmarshalIn(in, realType(), longholder, objholder);
value = longholder[0];
object = objholder[0];
stream = null;