cmd: Remove dead assignments (clang)

André Hentschel nerv at dawncrow.de
Sun Jan 15 08:17:41 CST 2017


Signed-off-by: André Hentschel <nerv at dawncrow.de>
---
 programs/cmd/builtins.c | 2 +-
 programs/cmd/wcmdmain.c | 2 --
 2 files changed, 1 insertion(+), 3 deletions(-)

diff --git a/programs/cmd/builtins.c b/programs/cmd/builtins.c
index f3dbe3a..7301f54 100644
--- a/programs/cmd/builtins.c
+++ b/programs/cmd/builtins.c
@@ -4109,7 +4109,7 @@ void WCMD_setshow_env (WCHAR *s) {
       if (string[count-2] == '\r') string[count-2] = '\0'; /* Under Windoze we get CRLF! */
       WINE_TRACE("set /p: Setting var '%s' to '%s'\n", wine_dbgstr_w(s),
                  wine_dbgstr_w(string));
-      status = SetEnvironmentVariableW(s, string);
+      SetEnvironmentVariableW(s, string);
     }
 
   /* See if /A supplied, and if so calculate the results of all the expressions */
diff --git a/programs/cmd/wcmdmain.c b/programs/cmd/wcmdmain.c
index 87f5387..1aa3c1c 100644
--- a/programs/cmd/wcmdmain.c
+++ b/programs/cmd/wcmdmain.c
@@ -2527,8 +2527,6 @@ int wmain (int argc, WCHAR *argvW[])
 
         /* Otherwise we now need to look in the path to see if we can find it */
         } else {
-          p = thisArg + strlenW(thisArg);
-
           /* Does file exist with this name? */
           if (SearchPathW(NULL, thisArg, NULL, sizeof(string)/sizeof(WCHAR), string, NULL) != 0)  {
             WINE_TRACE("Found on path as '%s'\n", wine_dbgstr_w(string));
-- 
2.7.4





More information about the wine-patches mailing list