[core,license] update length

In license_read_encrypted_premaster_secret_blob the length argument was
not set, fix that
This commit is contained in:
akallabeth
2023-01-28 13:22:38 +01:00
committed by akallabeth
parent 936e239acb
commit 5f8cc02cf3

View File

@@ -1507,7 +1507,8 @@ static BOOL license_read_encrypted_premaster_secret_blob(wStream* s, LICENSE_BLO
{
if (!license_read_binary_blob(s, blob))
return FALSE;
// TODO
WINPR_ASSERT(ModulusLength);
*ModulusLength = blob->length;
return TRUE;
}