aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTobias Brunner <tobias@strongswan.org>2013-12-19 11:02:23 +0100
committerTobias Brunner <tobias@strongswan.org>2013-12-19 11:02:23 +0100
commit7c4629060ab09435426f808cf1994ea64248c07a (patch)
tree8963b3499c7bd59fc7344a168c021be7d47fcd9e
parentf5fd12b9320fa7c5f8c9d8a08963c33c5e229ed2 (diff)
downloadstrongswan-7c4629060ab09435426f808cf1994ea64248c07a.tar.bz2
strongswan-7c4629060ab09435426f808cf1994ea64248c07a.tar.xz
aes-test: Fix compiler warnings from older versions of GCC
-rw-r--r--scripts/aes-test.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/aes-test.c b/scripts/aes-test.c
index ddf4a5ded..f326b7ee1 100644
--- a/scripts/aes-test.c
+++ b/scripts/aes-test.c
@@ -167,7 +167,7 @@ static bool get_next_test_vector(test_vector_t *test)
while (fgets(line, sizeof(line), ctx.in))
{
enumerator_t *enumerator;
- chunk_t value;
+ chunk_t value = chunk_empty;
char *token;
int i;