Fixes for miCASAReadBinaryKey and miCASAWriteBinaryKey to work.

This commit is contained in:
Todd Throne 2006-06-21 15:47:02 +00:00
parent 74a6359218
commit 8f96e7cbc1

View File

@ -2153,17 +2153,17 @@ int32_t ipc_ReadBinaryKey
{
// Cleanup the channel by reading the remaining and return error.
int n;
n = dataLen;
n = dataLen + MSG_DWORD_LEN;
while(n)
{
int bytes = IPC_READ(ssHandle->platHandle, gpReplyBuf, MIN_REPLY_BUF_LEN);
if( bytes > 0)
n -= MIN_REPLY_BUF_LEN;
n -= bytes;
else
break;
}
// Read the sscs return code also.
IPC_READ(ssHandle->platHandle, (Byte *) &sockReturn, MSG_DWORD_LEN);
// IPC_READ(ssHandle->platHandle, (Byte *) &sockReturn, MSG_DWORD_LEN);
retCode = NSSCS_E_ENUM_BUFF_TOO_SHORT;
break;
}