Commit 6451b962 authored by Juan Lang's avatar Juan Lang Committed by Alexandre Julliard

crypt32/tests: Test an otherwise unused return value.

parent d0b7cc5b
...@@ -2329,6 +2329,8 @@ static void testAddCertificateLink(void) ...@@ -2329,6 +2329,8 @@ static void testAddCertificateLink(void)
if (buf) if (buf)
{ {
ret = CertSerializeCertificateStoreElement(linked, 0, buf, &size); ret = CertSerializeCertificateStoreElement(linked, 0, buf, &size);
ok(ret, "CertSerializeCertificateStoreElement failed: %08x\n",
GetLastError());
/* The serialized linked certificate now contains the friendly /* The serialized linked certificate now contains the friendly
* name property. * name property.
*/ */
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment