diff options
Diffstat (limited to 'crypto/openssh/cipher-aes.c')
-rw-r--r-- | crypto/openssh/cipher-aes.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/openssh/cipher-aes.c b/crypto/openssh/cipher-aes.c index 07ec7aa..8b10172 100644 --- a/crypto/openssh/cipher-aes.c +++ b/crypto/openssh/cipher-aes.c @@ -120,7 +120,7 @@ ssh_rijndael_cleanup(EVP_CIPHER_CTX *ctx) if ((c = EVP_CIPHER_CTX_get_app_data(ctx)) != NULL) { memset(c, 0, sizeof(*c)); - xfree(c); + free(c); EVP_CIPHER_CTX_set_app_data(ctx, NULL); } return (1); |