From 7213c6aabdd2f62fda2e3a01fa912b8c1a5de692 Mon Sep 17 00:00:00 2001 From: "C. McEnroe" Date: Wed, 9 Sep 2020 15:55:40 -0400 Subject: Fix possibliy uninitialized error It won't be, but gcc thinks it might. --- bounce.c | 1 + 1 file changed, 1 insertion(+) diff --git a/bounce.c b/bounce.c index 0f10c26..b2764e2 100644 --- a/bounce.c +++ b/bounce.c @@ -355,6 +355,7 @@ int main(int argc, char *argv[]) { struct Cert localCA = { -1, -1, "" }; if (caPath) { + error = 0; const char *dirs = NULL; for (const char *path; NULL != (path = configPath(&dirs, caPath));) { error = certOpen(&localCA, path); -- cgit 1.4.1