diff options
author | Danilo Segan <danilo@gnome.org> | 2011-04-04 19:09:16 +0800 |
---|---|---|
committer | Guillaume Desmottes <guillaume.desmottes@collabora.co.uk> | 2011-04-04 19:12:16 +0800 |
commit | de3dbb6817d90c0eee7207fc5b69e53e7e72200a (patch) | |
tree | 798c6e7449abead0b2fb7a3bbfe4da53d086117a | |
parent | edb212fe16edbfc8a563bb74c52f9bcf8e92f0d7 (diff) | |
download | gsoc2013-empathy-de3dbb6817d90c0eee7207fc5b69e53e7e72200a.tar gsoc2013-empathy-de3dbb6817d90c0eee7207fc5b69e53e7e72200a.tar.gz gsoc2013-empathy-de3dbb6817d90c0eee7207fc5b69e53e7e72200a.tar.bz2 gsoc2013-empathy-de3dbb6817d90c0eee7207fc5b69e53e7e72200a.tar.lz gsoc2013-empathy-de3dbb6817d90c0eee7207fc5b69e53e7e72200a.tar.xz gsoc2013-empathy-de3dbb6817d90c0eee7207fc5b69e53e7e72200a.tar.zst gsoc2013-empathy-de3dbb6817d90c0eee7207fc5b69e53e7e72200a.zip |
Initialize matched to FALSE to stop -Wall breaking the build (and potentially avoid a hard-to-track bug)
Fixes bug #646691
-rw-r--r-- | libempathy/empathy-tls-verifier.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libempathy/empathy-tls-verifier.c b/libempathy/empathy-tls-verifier.c index 47a54333c..265f34843 100644 --- a/libempathy/empathy-tls-verifier.c +++ b/libempathy/empathy-tls-verifier.c @@ -258,7 +258,7 @@ perform_verification (EmpathyTLSVerifier *self, guint verify_output; gint res; gint i; - gboolean matched; + gboolean matched = FALSE; EmpathyTLSVerifierPriv *priv = GET_PRIV (self); DEBUG ("Performing verification"); |