aboutsummaryrefslogtreecommitdiffstats
path: root/scripts
diff options
context:
space:
mode:
authorMartin Willi <martin@revosec.ch>2015-05-04 13:24:33 +0200
committerMartin Willi <martin@revosec.ch>2015-05-04 13:24:33 +0200
commitb82157509354c0ebe428efe7b17844dcd0bd2c51 (patch)
tree91dd78cbf022544969b7457bbabc49fc701688e9 /scripts
parent362e87e3e04d7b6a19da8823cb5d74b8a7cb737a (diff)
downloadstrongswan-b82157509354c0ebe428efe7b17844dcd0bd2c51.tar.bz2
strongswan-b82157509354c0ebe428efe7b17844dcd0bd2c51.tar.xz
crypt-burn: free() associated data after test
Diffstat (limited to 'scripts')
-rw-r--r--scripts/crypt_burn.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/scripts/crypt_burn.c b/scripts/crypt_burn.c
index c0143d0a5..3bd36d2dc 100644
--- a/scripts/crypt_burn.c
+++ b/scripts/crypt_burn.c
@@ -120,6 +120,7 @@ static bool burn_aead(const proposal_token_t *token, u_int limit, u_int len)
free(iv.ptr);
free(data.ptr);
free(key.ptr);
+ free(assoc.ptr);
return ok;
}