From a64d79ca4c5699be161a54d94e0e6c0f7d06db7c Mon Sep 17 00:00:00 2001 From: Nick Mathewson Date: Thu, 28 Sep 2017 09:25:17 -0400 Subject: Move around some LCOV_EXCLs in src/common Apparently, my compiler now generates coverage markers for label-only lines, so we need to exclude those too if they are meant to be unreachable. --- src/common/compress.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'src/common/compress.c') diff --git a/src/common/compress.c b/src/common/compress.c index 472268a439..110eb65867 100644 --- a/src/common/compress.c +++ b/src/common/compress.c @@ -188,8 +188,9 @@ tor_compress_impl(int compress, "Error while %scompresing data: bad input?", compress?"":"un"); goto err; // bad data. - default: + // LCOV_EXCL_START + default: tor_assert_nonfatal_unreached(); goto err; // LCOV_EXCL_STOP -- cgit v1.2.3-54-g00ecf