secur32: Handle EOF from gnutls_record_recv.

oldstable
Hans Leidekker 2009-11-19 09:30:33 +01:00 committed by Alexandre Julliard
parent 83e7a1214a
commit aeb161f13f
1 changed files with 3 additions and 0 deletions

View File

@ -1203,6 +1203,9 @@ static SECURITY_STATUS SEC_ENTRY schan_DecryptMessage(PCtxtHandle context_handle
return SEC_E_INTERNAL_ERROR;
}
}
else if (!ret)
break;
received += ret;
}