Fix for new report in wc_BerToDer with uninitialized derSz.

This commit is contained in:
David Garske
2018-07-30 11:51:26 -07:00
parent 309d7a9d0d
commit 0ef63048a0

View File

@ -19313,7 +19313,7 @@ int berder_test(void)
{
int ret;
int i;
word32 len, l;
word32 len = 0, l;
byte out[32];
static const byte good1_in[] = { 0x30, 0x80, 0x00, 0x00 };
static const byte good1_out[] = { 0x30, 0x00 };