diff options
author | Andreas Steffen <andreas.steffen@strongswan.org> | 2010-11-25 23:08:00 +0100 |
---|---|---|
committer | Andreas Steffen <andreas.steffen@strongswan.org> | 2010-11-25 23:08:00 +0100 |
commit | a95d5760df7fb6240c70ae7ee77cfcef6cfa7343 (patch) | |
tree | a5823164fa39e9164219f5bbdcaf2dae343c1dac | |
parent | c6753bd4a7e3311de58b541d24ec27a9a447b37f (diff) | |
download | strongswan-a95d5760df7fb6240c70ae7ee77cfcef6cfa7343.tar.bz2 strongswan-a95d5760df7fb6240c70ae7ee77cfcef6cfa7343.tar.xz |
INIT allocates memory
-rw-r--r-- | src/libhydra/plugins/kernel_klips/kernel_klips_plugin.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libhydra/plugins/kernel_klips/kernel_klips_plugin.c b/src/libhydra/plugins/kernel_klips/kernel_klips_plugin.c index 9ec3316ff..84d69c28d 100644 --- a/src/libhydra/plugins/kernel_klips/kernel_klips_plugin.c +++ b/src/libhydra/plugins/kernel_klips/kernel_klips_plugin.c @@ -45,7 +45,7 @@ METHOD(plugin_t, destroy, void, */ plugin_t *kernel_klips_plugin_create() { - private_kernel_klips_plugin_t *this = malloc_thing(private_kernel_klips_plugin_t); + private_kernel_klips_plugin_t *this; INIT(this, .public = { |