Skip to content

Commit

Permalink
Fix memory leak in context unit test
Browse files Browse the repository at this point in the history
Before fix, `valgrind ./tests 1` outputs
  ==21959==     in use at exit: 2,228,288 bytes in 8 blocks

after:
  ==23974==     in use at exit: 0 bytes in 0 blocks
  • Loading branch information
apoelstra committed Apr 16, 2015
1 parent 14aacdc commit 5c2a4fa
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions src/tests.c
Expand Up @@ -142,6 +142,12 @@ void run_context_tests(void) {
/* try verifying */
CHECK(secp256k1_ecdsa_sig_verify(&vrfy->ecmult_ctx, &sig, &pub, &msg));
CHECK(secp256k1_ecdsa_sig_verify(&both->ecmult_ctx, &sig, &pub, &msg));

/* cleanup */
secp256k1_context_destroy(none);
secp256k1_context_destroy(sign);
secp256k1_context_destroy(vrfy);
secp256k1_context_destroy(both);
}

/***** HASH TESTS *****/
Expand Down

0 comments on commit 5c2a4fa

Please sign in to comment.