From 46a82e131538598179db3302169f48a962760327 Mon Sep 17 00:00:00 2001 From: Matthias Andree Date: Thu, 26 Aug 2021 23:53:14 +0200 Subject: imap.c, report.c: remove or comment dead stores. --- imap.c | 5 ++++- report.c | 4 ++-- 2 files changed, 6 insertions(+), 3 deletions(-) diff --git a/imap.c b/imap.c index ca08e9b6..55998ae2 100644 --- a/imap.c +++ b/imap.c @@ -563,7 +563,10 @@ static int imap_getauth(int sock, struct query *ctl, char *greeting) * Time to authenticate the user. * Try the protocol variants that don't require passwords first. */ - ok = PS_AUTHFAIL; + ok = PS_AUTHFAIL; /* formally, never read, + but let's leave this in place as a safe default + for future maintenance */ + (void)ok; /* Yahoo hack - we'll just try ID if it was offered by the server, * and IGNORE errors. */ diff --git a/report.c b/report.c index 2db7d0a9..370e42a9 100644 --- a/report.c +++ b/report.c @@ -268,7 +268,7 @@ report_build (FILE *errfp, message, va_alist) rep_ensuresize(n + 1); VA_START(args, message); - n = report_vbuild(message, args); + (void)report_vbuild(message, args); va_end(args); #else { @@ -333,7 +333,7 @@ report_complete (FILE *errfp, message, va_alist) rep_ensuresize(n + 1); VA_START(args, message); - n = report_vbuild(message, args); + (void)report_vbuild(message, args); va_end(args); #else report_build(errfp, message, a1, a2, a3, a4, a5, a6, a7, a8); -- cgit v1.2.3