diff options
author | Martin Willi <martin@strongswan.org> | 2008-11-05 11:55:17 +0000 |
---|---|---|
committer | Martin Willi <martin@strongswan.org> | 2008-11-05 11:55:17 +0000 |
commit | a492eb20335e596ee454f2493570c74620763bd5 (patch) | |
tree | 8a93ff8c65be7610969e97bf1a0f8e6a74092001 | |
parent | 3ac5a0db8ca620ab1eb536dbc742c3acf8325b98 (diff) | |
download | strongswan-a492eb20335e596ee454f2493570c74620763bd5.tar.bz2 strongswan-a492eb20335e596ee454f2493570c74620763bd5.tar.xz |
fixed iterator regression introduced in [4577]
-rw-r--r-- | src/libstrongswan/utils/linked_list.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/libstrongswan/utils/linked_list.c b/src/libstrongswan/utils/linked_list.c index 585f28403..45d17c80f 100644 --- a/src/libstrongswan/utils/linked_list.c +++ b/src/libstrongswan/utils/linked_list.c @@ -209,6 +209,7 @@ static bool iterate(private_iterator_t *this, void** value) { return FALSE; } + *value = this->current->value; return TRUE; } |