Merge "Allow the host to send empty clipboards to the guest"
This commit is contained in:
@@ -111,7 +111,7 @@ class EmulatorClipboardMonitor implements Consumer<ClipData> {
|
|||||||
bb.order(ByteOrder.LITTLE_ENDIAN);
|
bb.order(ByteOrder.LITTLE_ENDIAN);
|
||||||
final int msgLen = bb.getInt();
|
final int msgLen = bb.getInt();
|
||||||
|
|
||||||
if (msgLen <= 0 || msgLen > MAX_CLIPBOARD_BYTES) {
|
if (msgLen < 0 || msgLen > MAX_CLIPBOARD_BYTES) {
|
||||||
throw new ProtocolException("Clipboard message length: " + msgLen + " out of bounds.");
|
throw new ProtocolException("Clipboard message length: " + msgLen + " out of bounds.");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user