Fix minor file descriptor leaks. Found by cppcheck, reported by Tim Kosse.
authorjacob <jacob@cda61777-01e9-0310-a592-d414129be87e>
Wed, 16 Sep 2009 22:28:20 +0000 (22:28 +0000)
committerjacob <jacob@cda61777-01e9-0310-a592-d414129be87e>
Wed, 16 Sep 2009 22:28:20 +0000 (22:28 +0000)
git-svn-id: svn://svn.tartarus.org/sgt/putty@8656 cda61777-01e9-0310-a592-d414129be87e

cmdline.c
unix/uxnoise.c

index aafb690..26f29c9 100644 (file)
--- a/cmdline.c
+++ b/cmdline.c
@@ -322,6 +322,7 @@ int cmdline_process_param(char *p, char *value, int need_save, Config *cfg)
        cfg->remote_cmd_ptr = command;
        cfg->remote_cmd_ptr2 = NULL;
        cfg->nopty = TRUE;      /* command => no terminal */
+       fclose(fp);
     }
     if (!strcmp(p, "-P")) {
        RETURN(2);
index 7ebb9a5..c42466f 100644 (file)
@@ -35,6 +35,8 @@ static int read_dev_urandom(char *buf, int len)
        ngot += ret;
     }
 
+    close(fd);
+
     return 1;
 }