rsaenh: Add a value to the empty braces in the initialiser for aOIDDescriptor in build_hash_signature.

An empty initialiser isn't supported on some compilers like MSVC.
This commit is contained in:
Rob Shearman 2008-10-15 14:12:27 +01:00 committed by Alexandre Julliard
parent b7cfa58996
commit b069b53bd9
1 changed files with 1 additions and 1 deletions

View File

@ -1259,7 +1259,7 @@ static BOOL build_hash_signature(BYTE *pbSignature, DWORD dwLen, ALG_ID aiAlgid,
0x86, 0xf7, 0x0d, 0x02, 0x05, 0x05, 0x00, 0x04, 0x10 } },
{ CALG_SHA, 15, { 0x30, 0x21, 0x30, 0x09, 0x06, 0x05, 0x2b, 0x0e, 0x03,
0x02, 0x1a, 0x05, 0x00, 0x04, 0x14 } },
{ 0, 0, {} }
{ 0, 0, { 0 } }
};
DWORD dwIdxOID, i, j;