diff options
Diffstat (limited to 'sntp/crypto.c')
-rw-r--r-- | sntp/crypto.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sntp/crypto.c b/sntp/crypto.c index 8ffe006f9912..8a47edef7184 100644 --- a/sntp/crypto.c +++ b/sntp/crypto.c @@ -70,7 +70,8 @@ compute_mac( } len = (u_int)slen; - CMAC_CTX_cleanup(ctx); + if (ctx) + CMAC_CTX_free(ctx); /* Test our AES-128-CMAC implementation */ } else /* MD5 MAC handling */ |