From: Yang Tse Date: Wed, 9 Jun 2010 14:48:19 +0000 (+0200) Subject: code simplification X-Git-Tag: upstream/7.37.1~4977 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=343c4c7072cd5ee16f1e444089db8c7e2ad92430;p=platform%2Fupstream%2Fcurl.git code simplification --- diff --git a/lib/ftplistparser.c b/lib/ftplistparser.c index 3dd6617..08a7942 100644 --- a/lib/ftplistparser.c +++ b/lib/ftplistparser.c @@ -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)); }