Details
-
Bug
-
Status: Closed
-
Major
-
Resolution: Fixed
-
None
-
None
-
None
Description
The class Stack writes a non serializable object (Runnable) to ObjectOutput:
protected Runnable runnable;
s.writeObject(runnable);
This code seems to be passing a non-serializable object to the ObjectOutput.writeObject method. If the object is, indeed, non-serializable, an error will result.