in miCASAReadKey, fix hang if too small of buffer was passed in.
This commit is contained in:
		| @@ -2111,14 +2111,12 @@ int32_t ipc_ReadKey | |||||||
|                 n = dataLen;  |                 n = dataLen;  | ||||||
|                 while(n) |                 while(n) | ||||||
|                 { |                 { | ||||||
|                     int bytes = IPC_READ(ssHandle->platHandle, gpReplyBuf, MIN_REPLY_BUF_LEN); |                     int bytesRead = IPC_READ(ssHandle->platHandle, gpReplyBuf, n); | ||||||
|                     if( bytes > 0) |                     if( bytesRead > 0) | ||||||
|                         n -= MIN_REPLY_BUF_LEN; |                         n -= bytesRead; | ||||||
|                     else |                     else | ||||||
|                         break; |                         break; | ||||||
|                 } |                 } | ||||||
|                 // Read the sscs return code also. |  | ||||||
|                 IPC_READ(ssHandle->platHandle, (Byte *) &sockReturn, MSG_DWORD_LEN); |  | ||||||
|                 retCode = NSSCS_E_ENUM_BUFF_TOO_SHORT; |                 retCode = NSSCS_E_ENUM_BUFF_TOO_SHORT; | ||||||
|                 break; |                 break; | ||||||
|             } |             } | ||||||
|   | |||||||
		Reference in New Issue
	
	Block a user