From 0336676ff7d56afcf764854481d6250c6fba1b56 Mon Sep 17 00:00:00 2001 From: John Safranek Date: Wed, 28 Dec 2022 09:51:31 -0800 Subject: [PATCH] Release Cleanup 2 1. Remove ununsed variable in a function for the Windows build. --- src/wolfsftp.c | 1 - 1 file changed, 1 deletion(-) diff --git a/src/wolfsftp.c b/src/wolfsftp.c index c0c02efe6..4817fa264 100644 --- a/src/wolfsftp.c +++ b/src/wolfsftp.c @@ -2762,7 +2762,6 @@ static int wolfSSH_SFTPNAME_readdir(WOLFSSH* ssh, WDIR* dir, WS_SFTPNAME* out, { char* buf; int bufSz; - int tmpSz; bufSz = out->fSz + (int)WSTRLEN(dirName) + 2; /* /+nul */ buf = (char*)WMALLOC(bufSz, out->heap, DYNTYPE_SFTP);