From: Brad Hards Date: Thu, 16 Dec 2010 23:06:03 +0000 (+0100) Subject: chkspeed: bad strtol() call for -M option X-Git-Tag: curl-7_21_4~149 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=8f50a404f9752acb7262b1854e1e29fcca0fb3fb;p=curl chkspeed: bad strtol() call for -M option Bug: http://curl.haxx.se/mail/lib-2010-12/0192.html --- diff --git a/docs/examples/chkspeed.c b/docs/examples/chkspeed.c index 00db5bf1d..4305bde8d 100644 --- a/docs/examples/chkspeed.c +++ b/docs/examples/chkspeed.c @@ -71,7 +71,7 @@ int main(int argc, char *argv[]) } else if (strncasecmp(*argv, "-T", 2) == 0) { prttime = 1; } else if (strncasecmp(*argv, "-M=", 3) == 0) { - long m = strtol(argv+3, NULL, 10); + long m = strtol((*argv)+3, NULL, 10); switch(m) { case 1: url = URL_1M; break;