]> asedeno.scripts.mit.edu Git - PuTTY.git/commitdiff
Oops - fix another segfault in that -L and -R code
authorSimon Tatham <anakin@pobox.com>
Sun, 25 Nov 2001 12:23:34 +0000 (12:23 +0000)
committerSimon Tatham <anakin@pobox.com>
Sun, 25 Nov 2001 12:23:34 +0000 (12:23 +0000)
[originally from svn r1412]

plink.c

diff --git a/plink.c b/plink.c
index fc420ef901d515ebd7fcbf4f24a5612b1b67ba79..c60902b548915c4dc9f239d6ffae4440daff846e 100644 (file)
--- a/plink.c
+++ b/plink.c
@@ -447,7 +447,7 @@ int main(int argc, char **argv)
                strncpy(cfg.username, username, sizeof(cfg.username));
                cfg.username[sizeof(cfg.username) - 1] = '\0';
            } else if ((!strcmp(p, "-L") || !strcmp(p, "-R")) && argc > 1) {
-               char *fwd, *ptr;
+               char *fwd, *ptr, *q;
                int i=0;
                --argc, fwd = *++argv;
                ptr = extra_portfwd;
@@ -460,7 +460,8 @@ int main(int argc, char **argv)
                }
                ptr[0] = p[1];  /* insert a 'L' or 'R' at the start */
                strncpy(ptr+1, fwd, sizeof(extra_portfwd) - i);
-               ptr[strcspn(ptr, ":")] = '\t';  /* replace first : with \t */
+               q = strchr(ptr, ':');
+               if (q) *q = '\t';      /* replace first : with \t */
                ptr[strlen(ptr)+1] = '\000';    /* append two '\000' */
                extra_portfwd[sizeof(extra_portfwd) - 1] = '\0';
            } else if (!strcmp(p, "-m") && argc > 1) {