-
Bug
-
Resolution: Fixed
-
P3
-
1.4.0
-
merlin
-
generic
-
generic
-
Not verified
Bug in the new codeset code found by Mark Roth and Harold Carr.
In com.sun.corba.se.internal.corba.EncapsOutputStream
public EncapsOutputStream(ORB orb, GIOPVersion version) {
super(orb, version, false);
}
public EncapsOutputStream(ORB orb, boolean isLittleEndian) {
super(orb, GIOPVersion.V1_2, isLittleEndian);
}
The first constructor has "false" because it calls the CDROutputStream constructor which interprets that boolean to mean "don't allow fragmentation." It has nothing to do with byte order.
The second superclass constructor call is incorrect.
This is being fixed before it was integrated into Merlin.
********************************************************************************
tuong.nguyen@eng 2001-07-30
- Verified ok by code inspection of files
- com/sun/corba/se/internal/corba/EncapsOutputStream.java
Used new constructor of CDROutputStream
- com/sun/corba/se/internal/iiop/CDROutputStream.java
Added new constructor
- Verified with build j2sdk-1_4_0-beta_refresh-bin-b73-solsparc-25_jul_2001
********************************************************************************
In com.sun.corba.se.internal.corba.EncapsOutputStream
public EncapsOutputStream(ORB orb, GIOPVersion version) {
super(orb, version, false);
}
public EncapsOutputStream(ORB orb, boolean isLittleEndian) {
super(orb, GIOPVersion.V1_2, isLittleEndian);
}
The first constructor has "false" because it calls the CDROutputStream constructor which interprets that boolean to mean "don't allow fragmentation." It has nothing to do with byte order.
The second superclass constructor call is incorrect.
This is being fixed before it was integrated into Merlin.
********************************************************************************
tuong.nguyen@eng 2001-07-30
- Verified ok by code inspection of files
- com/sun/corba/se/internal/corba/EncapsOutputStream.java
Used new constructor of CDROutputStream
- com/sun/corba/se/internal/iiop/CDROutputStream.java
Added new constructor
- Verified with build j2sdk-1_4_0-beta_refresh-bin-b73-solsparc-25_jul_2001
********************************************************************************