aboutsummaryrefslogtreecommitdiff
path: root/lib/url.c
diff options
context:
space:
mode:
authorKyle J. McKay <mackyle@gmail.com>2014-12-17 15:52:07 +0100
committerPatrick Monnerat <pm@datasphere.ch>2014-12-17 15:52:07 +0100
commit14c3601583bfe171a33971115220378d5076e3b8 (patch)
treef4014b1ed728270da20ba3d0bfb9191ca54644d5 /lib/url.c
parent9081014c2c467077723d5ae1d0081003b3eb3504 (diff)
parseurlandfillconn(): fix improper non-numeric scope_id stripping.
Fixes SF bug 1149: http://sourceforge.net/p/curl/bugs/1449/
Diffstat (limited to 'lib/url.c')
-rw-r--r--lib/url.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/url.c b/lib/url.c
index cbc750904..3d6f8fd14 100644
--- a/lib/url.c
+++ b/lib/url.c
@@ -4116,10 +4116,10 @@ static CURLcode parseurlandfillconn(struct SessionHandle *data,
}
}
if(scopeidx > 0) {
+ char *p = percent + identifier_offset + strlen(ifname);
+
/* Remove zone identifier from hostname */
- memmove(percent,
- percent + identifier_offset + strlen(ifname),
- identifier_offset + strlen(ifname));
+ memmove(percent, p, strlen(p) + 1);
conn->scope_id = scopeidx;
}
else