ikev2: fix copy-paste error when freeing memory 16/28816/1
authorFilip Tehlar <ftehlar@cisco.com>
Thu, 10 Sep 2020 03:37:37 +0000 (03:37 +0000)
committerFilip Tehlar <ftehlar@cisco.com>
Thu, 10 Sep 2020 03:37:37 +0000 (03:37 +0000)
Type: fix

Change-Id: If44c807d188b3e88d819f4132d73e6a34402a525
Signed-off-by: Filip Tehlar <ftehlar@cisco.com>
src/plugins/ikev2/ikev2.c

index 57eea01..34c54f3 100644 (file)
@@ -318,7 +318,7 @@ ikev2_sa_free_all_vec (ikev2_sa_t * sa)
   vec_free (sa->r_id.data);
 
   vec_free (sa->i_auth.data);
-  if (sa->r_auth.key)
+  if (sa->i_auth.key)
     EVP_PKEY_free (sa->i_auth.key);
   vec_free (sa->r_auth.data);
   if (sa->r_auth.key)