diff options
author | dtucker <dtucker> | 2013-06-01 22:07:31 +0000 |
---|---|---|
committer | dtucker <dtucker> | 2013-06-01 22:07:31 +0000 |
commit | f1542066e1823de5a60fdace2257cdf0ec2f50a7 (patch) | |
tree | de0e0f1339a4b714c057362df643a1c785a9b909 /cipher-ctr.c | |
parent | 9015b96762cda36dd098909d314abf14acce0c99 (diff) | |
download | openssh-f1542066e1823de5a60fdace2257cdf0ec2f50a7.tar.gz |
- (dtucker) [M auth-chall.c auth-krb5.c auth-pam.c cipher-aes.c cipher-ctr.c
groupaccess.c loginrec.c monitor.c monitor_wrap.c session.c sshd.c
sshlogin.c uidswap.c openbsd-compat/bsd-cygwin_util.c
openbsd-compat/getrrsetbyname-ldns.c openbsd-compat/port-aix.c
openbsd-compat/port-linux.c] Replace portable-specific instances of xfree
with the equivalent calls to free.
Diffstat (limited to 'cipher-ctr.c')
-rw-r--r-- | cipher-ctr.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cipher-ctr.c b/cipher-ctr.c index d1fe69f5..ea0f9b3b 100644 --- a/cipher-ctr.c +++ b/cipher-ctr.c @@ -104,7 +104,7 @@ ssh_aes_ctr_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); |