diff options
author | Daniel Stenberg <daniel@haxx.se> | 2003-10-28 09:17:15 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2003-10-28 09:17:15 +0000 |
commit | 1cdc66d927e6476f422ad3266c34ab766b1260ea (patch) | |
tree | 57ce69f1e17306c86036cdfa1763563f69629e9b | |
parent | ba12c5dedaf1656a8f4cc4f33183dc087926a2a1 (diff) |
overlapping memory chunks with strcpy(), detected by the friendly valgrind
-rw-r--r-- | lib/url.c | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -2035,7 +2035,8 @@ static CURLcode CreateConnection(struct SessionHandle *data, used truly as a separator */ ptr++; - strcpy(conn->path, ptr); + /* This cannot be made with strcpy, as the memory chunks overlap! */ + memmove(conn->path, ptr, strlen(ptr)+1); } } |