1
0
mirror of https://frontier.innolan.net/rainlance/c-ares.git synced 2025-10-06 14:29:36 +00:00

remove unnecessary typecasting of malloc()

This commit is contained in:
Yang Tse
2008-09-06 05:29:05 +00:00
parent 5d2ace75a3
commit f33bd94c05
2 changed files with 3 additions and 3 deletions

View File

@ -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;