Commit d88cfec9 authored by Paul Vriens's avatar Paul Vriens Committed by Alexandre Julliard

crypt32/tests: Add a missing CryptMsgUpdate.

parent 9593c9e6
...@@ -2574,6 +2574,7 @@ static void test_msg_control(void) ...@@ -2574,6 +2574,7 @@ static void test_msg_control(void)
ok(!ret && GetLastError() == E_INVALIDARG, ok(!ret && GetLastError() == E_INVALIDARG,
"Expected E_INVALIDARG, got %08x\n", GetLastError()); "Expected E_INVALIDARG, got %08x\n", GetLastError());
} }
ret = CryptMsgUpdate(msg, NULL, 0, TRUE);
/* or after an update. */ /* or after an update. */
for (i = 1; have_nt && (i <= CMSG_CTRL_ADD_CMS_SIGNER_INFO); i++) for (i = 1; have_nt && (i <= CMSG_CTRL_ADD_CMS_SIGNER_INFO); i++)
{ {
......
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