From 1f4275451b08be964b4ec71181d12fa70800ffa4 Mon Sep 17 00:00:00 2001 From: Peter Palfrader Date: Fri, 27 Jul 2007 01:10:23 +0000 Subject: [PATCH] Resolve a compiler warning about uninitialized use svn:r10940 --- src/or/routerlist.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/or/routerlist.c b/src/or/routerlist.c index 49069380a5..ac74617bda 100644 --- a/src/or/routerlist.c +++ b/src/or/routerlist.c @@ -207,7 +207,7 @@ trusted_dirs_load_certs_from_string(const char *contents, int from_store) for (s = contents; *s; s = eos) { authority_cert_t *cert = authority_cert_parse_from_string(s, &eos); - int found; + int found = 0; if (!cert) break; ds = trusteddirserver_get_by_v3_auth_digest( -- 2.47.3