summaryrefslogtreecommitdiff
path: root/lib/easy.c
diff options
context:
space:
mode:
authorYang Tse <yangsita@gmail.com>2008-09-06 05:29:05 +0000
committerYang Tse <yangsita@gmail.com>2008-09-06 05:29:05 +0000
commit59e378f48fed849e8e41f0bc6a10bf7a1732ae8a (patch)
tree2443ceace655d5d830c7c4d7c95869c6a0f93c5c /lib/easy.c
parenta622fd90b4c563a4fced20c5b88cb57537e809b0 (diff)
downloadcurl-59e378f48fed849e8e41f0bc6a10bf7a1732ae8a.tar.gz
remove unnecessary typecasting of malloc()
Diffstat (limited to 'lib/easy.c')
-rw-r--r--lib/easy.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/easy.c b/lib/easy.c
index 1dba68c8f..4e4998297 100644
--- a/lib/easy.c
+++ b/lib/easy.c
@@ -612,7 +612,7 @@ CURL *curl_easy_duphandle(CURL *incurl)
* get setup on-demand in the code, as that would probably decrease
* the likeliness of us forgetting to init a buffer here in the future.
*/
- outcurl->state.headerbuff=(char*)malloc(HEADERSIZE);
+ outcurl->state.headerbuff = malloc(HEADERSIZE);
if(!outcurl->state.headerbuff) {
break;
}