From: Nick Mathewson Date: Tue, 16 Oct 2018 21:18:46 +0000 (-0400) Subject: Add a tor_free() in tor_gencert to fix a coverity warning X-Git-Tag: tor-0.3.5.3-alpha~15 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=8a0b7414870d2e0ddf90db8184b36be7309bd5c1;p=thirdparty%2Ftor.git Add a tor_free() in tor_gencert to fix a coverity warning --- diff --git a/src/tools/tor-gencert.c b/src/tools/tor-gencert.c index a498c205b7..238564125a 100644 --- a/src/tools/tor-gencert.c +++ b/src/tools/tor-gencert.c @@ -190,6 +190,7 @@ parse_commandline(int argc, char **argv) fprintf(stderr, "%s must resolve to an IPv4 address", addr_arg); return 1; } + tor_free(address); address = tor_strdup(fmt_addrport(&addr, port)); } else if (!strcmp(argv[i], "--create-identity-key")) { make_new_id = 1;