25 lines
761 B
Diff
25 lines
761 B
Diff
commit 0a3ca29021ffe389ae4f7400ee05f42dcf384d6b
|
|
Author: Martin Willi <martin@strongswan.org>
|
|
Date: Tue May 12 17:13:09 2009 +0200
|
|
|
|
fixed cleanup of traffic selector lists
|
|
|
|
diff --git a/src/charon/sa/tasks/child_create.c b/src/charon/sa/tasks/child_create.c
|
|
index 382266f..6bf9e9d 100644
|
|
--- a/src/charon/sa/tasks/child_create.c
|
|
+++ b/src/charon/sa/tasks/child_create.c
|
|
@@ -1126,11 +1126,11 @@ static void destroy(private_child_create_t *this)
|
|
{
|
|
chunk_free(&this->my_nonce);
|
|
chunk_free(&this->other_nonce);
|
|
- if (this->tsi)
|
|
+ if (this->tsr)
|
|
{
|
|
this->tsr->destroy_offset(this->tsr, offsetof(traffic_selector_t, destroy));
|
|
}
|
|
- if (this->tsr)
|
|
+ if (this->tsi)
|
|
{
|
|
this->tsi->destroy_offset(this->tsi, offsetof(traffic_selector_t, destroy));
|
|
}
|