summaryrefslogtreecommitdiffstats
path: root/polyp/modargs.c
diff options
context:
space:
mode:
Diffstat (limited to 'polyp/modargs.c')
-rw-r--r--polyp/modargs.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/polyp/modargs.c b/polyp/modargs.c
index 280a546d..ea104761 100644
--- a/polyp/modargs.c
+++ b/polyp/modargs.c
@@ -76,7 +76,7 @@ struct pa_modargs *pa_modargs_new(const char *args, const char* const* valid_key
if (args) {
enum { WHITESPACE, KEY, VALUE_START, VALUE_SIMPLE, VALUE_DOUBLE_QUOTES, VALUE_TICKS } state;
const char *p, *key, *value;
- size_t key_len, value_len;
+ size_t key_len = 0, value_len = 0;
key = value = NULL;
state = WHITESPACE;