aboutsummaryrefslogtreecommitdiff
path: root/lib/ftp.c
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2007-08-17 22:31:51 +0000
committerDaniel Stenberg <daniel@haxx.se>2007-08-17 22:31:51 +0000
commit1aa82deceadf70f9f2f43be7ee3544511ccc7e8d (patch)
tree05ae86f9533b424a75b110e5b847b5f800eab0f5 /lib/ftp.c
parent014fe6971e0eb8d058ebd0ab4e7b01bd89a413b1 (diff)
- Robson Braga Araujo filed bug report #1776232
(http://curl.haxx.se/bug/view.cgi?id=1776232) about libcurl calling Curl_client_write(), passing on a const string that the caller may not modify and yet it does (on some platforms).
Diffstat (limited to 'lib/ftp.c')
-rw-r--r--lib/ftp.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/ftp.c b/lib/ftp.c
index 9301b55b3..775c75f95 100644
--- a/lib/ftp.c
+++ b/lib/ftp.c
@@ -2144,8 +2144,8 @@ static CURLcode ftp_state_rest_resp(struct connectdata *conn,
default:
#ifdef CURL_FTP_HTTPSTYLE_HEAD
if (ftpcode == 350) {
- result = Curl_client_write(conn, CLIENTWRITE_BOTH,
- (char *)"Accept-ranges: bytes\r\n", 0);
+ char buffer[24]= { "Accept-ranges: bytes\r\n" };
+ result = Curl_client_write(conn, CLIENTWRITE_BOTH, buffer, 0);
if(result)
return result;
}