remove unnecessary typecasting of calloc()

This commit is contained in:
Yang Tse
2008-09-06 04:47:14 +00:00
parent 861b647e7b
commit a622fd90b4
15 changed files with 25 additions and 27 deletions

View File

@@ -651,7 +651,7 @@ CURLcode Curl_open(struct SessionHandle **curl)
#endif
/* Very simple start-up: alloc the struct, init it with zeroes and return */
data = (struct SessionHandle *)calloc(1, sizeof(struct SessionHandle));
data = calloc(1, sizeof(struct SessionHandle));
if(!data) {
/* this is a very serious error */
DEBUGF(fprintf(stderr, "Error: calloc of SessionHandle failed\n"));
@@ -2969,7 +2969,7 @@ static struct connectdata *allocate_conn(void)
{
struct connectdata *conn;
conn = (struct connectdata *)calloc(1, sizeof(struct connectdata));
conn = calloc(1, sizeof(struct connectdata));
if(!conn)
return NULL;