Eliminate a few harmless dead stores.

Quiets warnings from Infer.
This commit is contained in:
Todd C. Miller
2022-11-22 11:18:24 -07:00
parent 2f97da316e
commit f066ff9e01
13 changed files with 19 additions and 19 deletions

View File

@@ -509,7 +509,7 @@ sudo_krb5_ccname_path(const char *old_ccname)
static bool
sudo_check_krb5_ccname(const char *ccname)
{
int fd = -1;
int fd;
const char *ccname_path;
debug_decl(sudo_check_krb5_ccname, SUDOERS_DEBUG_LDAP);