mirror of
https://github.com/Alfresco/alfresco-community-repo.git
synced 2025-08-07 17:49:17 +00:00
Merged V3.0 to HEAD
12197: Fixes to the NT IOCTL call used by desktop actions. ETHREEOH-401, ACT-6025. 12198: Fixes to the desktop action client side EXE and server side handler. Increased receive buffer size in the client side app. ETHREEOH-401, ACT-6025. 12256: Fix to asynchronous CIFS receive that causes a Winsock error 0x0 and closes the session. JLAN-59. git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@12523 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
@@ -204,7 +204,7 @@ public class ContentIOControlHandler implements IOControlHandler
|
||||
if ( dataBuf.getLength() < IOControl.Signature.length())
|
||||
throw new IOControlNotImplementedException("Bad request length");
|
||||
|
||||
String sig = dataBuf.getString(IOControl.Signature.length(), false);
|
||||
String sig = dataBuf.getFixedString(IOControl.Signature.length(), false);
|
||||
|
||||
if ( sig == null || sig.compareTo(IOControl.Signature) != 0)
|
||||
throw new IOControlNotImplementedException("Bad request signature");
|
||||
|
Reference in New Issue
Block a user