提交 b1b3f032 编写于 作者: I igerasim

8181597: Process Proxy presentation

Reviewed-by: dfuchs, ahgross, rhalade, skoivu
上级 b36f18b6
......@@ -1746,6 +1746,10 @@ public class ObjectInputStream
passHandle = NULL_HANDLE;
int numIfaces = bin.readInt();
if (numIfaces > 65535) {
throw new InvalidObjectException("interface limit exceeded: "
+ numIfaces);
}
String[] ifaces = new String[numIfaces];
for (int i = 0; i < numIfaces; i++) {
ifaces[i] = bin.readUTF();
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册