code simplification
authorYang Tse <yangsita@gmail.com>
Wed, 9 Jun 2010 14:48:19 +0000 (16:48 +0200)
committerYang Tse <yangsita@gmail.com>
Wed, 9 Jun 2010 14:48:19 +0000 (16:48 +0200)
lib/ftplistparser.c

index 3dd6617..08a7942 100644 (file)
@@ -190,12 +190,7 @@ struct ftp_parselist_data {
 
 struct ftp_parselist_data *Curl_ftp_parselist_data_alloc(void)
 {
-  struct ftp_parselist_data *parselist_data =
-      malloc(sizeof(struct ftp_parselist_data));
-  if(!parselist_data)
-    return ZERO_NULL;
-  memset(parselist_data, 0, sizeof(struct ftp_parselist_data));
-  return parselist_data;
+  return calloc(1, sizeof(struct ftp_parselist_data));
 }