From f33bd94c050b8ff5e8bdfc62f8d626de97543e6e Mon Sep 17 00:00:00 2001 From: Yang Tse Date: Sat, 6 Sep 2008 05:29:05 +0000 Subject: remove unnecessary typecasting of malloc() --- ares_init.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'ares_init.c') diff --git a/ares_init.c b/ares_init.c index 20a23a3..bf4771d 100644 --- a/ares_init.c +++ b/ares_init.c @@ -675,7 +675,7 @@ DhcpNameServer { if (bytes) { - line = (char *)malloc(bytes+1); + line = malloc(bytes+1); if (RegQueryValueEx(mykey, NAMESERVER, NULL, &data_type, (unsigned char *)line, &bytes) == ERROR_SUCCESS) @@ -952,7 +952,7 @@ static int init_by_defaults(ares_channel channel) size_t len = 64; int res; - hostname = (char *)malloc(len); + hostname = malloc(len); if(!hostname) { rc = ARES_ENOMEM; goto error; -- cgit v1.2.3