|
|
@ -191,6 +191,12 @@ void QtLocalPeer::receiveConnection() |
|
|
|
QByteArray uMsg; |
|
|
|
QByteArray uMsg; |
|
|
|
quint32 remaining; |
|
|
|
quint32 remaining; |
|
|
|
ds >> remaining; |
|
|
|
ds >> remaining; |
|
|
|
|
|
|
|
if (remaining > 65535) { |
|
|
|
|
|
|
|
// drop suspiciously large data
|
|
|
|
|
|
|
|
delete socket; |
|
|
|
|
|
|
|
return; |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
uMsg.resize(remaining); |
|
|
|
uMsg.resize(remaining); |
|
|
|
int got = 0; |
|
|
|
int got = 0; |
|
|
|
char* uMsgBuf = uMsg.data(); |
|
|
|
char* uMsgBuf = uMsg.data(); |
|
|
|