diff options
author | Martin Willi <martin@revosec.ch> | 2013-03-19 15:16:06 +0100 |
---|---|---|
committer | Martin Willi <martin@revosec.ch> | 2013-03-19 15:48:27 +0100 |
commit | 5cf3afd1fa73e584c4cefeb1fa4e9e65d5c4e363 (patch) | |
tree | 5552746b5dd1c134d0142af000c52e1fd2b9406f /src | |
parent | 7f0f185bedf6b67ef5dac3d74e7e4f875d95fce2 (diff) | |
download | strongswan-5cf3afd1fa73e584c4cefeb1fa4e9e65d5c4e363.tar.bz2 strongswan-5cf3afd1fa73e584c4cefeb1fa4e9e65d5c4e363.tar.xz |
Fix compiler warning in HA plugin
Diffstat (limited to 'src')
-rw-r--r-- | src/libcharon/plugins/ha/ha_attribute.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libcharon/plugins/ha/ha_attribute.c b/src/libcharon/plugins/ha/ha_attribute.c index 981def6a3..d26c38325 100644 --- a/src/libcharon/plugins/ha/ha_attribute.c +++ b/src/libcharon/plugins/ha/ha_attribute.c @@ -174,7 +174,7 @@ METHOD(attribute_provider_t, acquire_address, host_t*, host_t *requested) { enumerator_t *enumerator; - pool_t *pool; + pool_t *pool = NULL; int offset = -1, byte, bit; host_t *address; char *name; |