test.c: another missed spot.

This commit is contained in:
Daniel Pouzzner
2020-09-04 01:59:14 -05:00
parent ebca451c93
commit fdf87fe152

View File

@@ -21623,7 +21623,7 @@ static int ecc_test_buffers(void) {
ecc_key *cliKey = (ecc_key *)XMALLOC(sizeof *cliKey, HEAP_HINT, DYNAMIC_TYPE_TMP_BUFFER); ecc_key *cliKey = (ecc_key *)XMALLOC(sizeof *cliKey, HEAP_HINT, DYNAMIC_TYPE_TMP_BUFFER);
ecc_key *servKey = (ecc_key *)XMALLOC(sizeof *servKey, HEAP_HINT, DYNAMIC_TYPE_TMP_BUFFER); ecc_key *servKey = (ecc_key *)XMALLOC(sizeof *servKey, HEAP_HINT, DYNAMIC_TYPE_TMP_BUFFER);
#else #else
ecc_key cliKey_buf, *cliKey_buf = &cliKey_buf; ecc_key cliKey_buf, *cliKey = &cliKey_buf;
ecc_key servKey_buf, *servKey = &servKey_buf; ecc_key servKey_buf, *servKey = &servKey_buf;
#endif #endif
WC_RNG rng; WC_RNG rng;