crypt32/tests: Fix mismatched deallocation function.

Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
Brendan Shanks 2022-04-29 09:04:41 -07:00 committed by Alexandre Julliard
parent eb55f64d52
commit 65954db2be
1 changed files with 1 additions and 1 deletions

View File

@ -2603,7 +2603,7 @@ static void test_decodeRsaPublicKey_Bcrypt(DWORD dwEncoding)
rsaPubKeys[i].modulus, rsaPubKeys[i].decodedModulusLen),
"Unexpected modulus\n");
LocalFree(buf);
LocalFree(leModulus);
HeapFree(GetProcessHeap(), 0, leModulus);
}
}
}