Fix to only init the RNG once for nRF51/nRF52x.

This commit is contained in:
David Garske
2020-07-31 11:56:32 -07:00
parent 9160a126e4
commit 904241cba4

View File

@ -2092,6 +2092,7 @@ int wc_GenerateSeed(OS_Seed* os, byte* output, word32 sz)
) { ) {
return -1; return -1;
} }
initialized = 1;
} }
while (remaining > 0) { while (remaining > 0) {