Initialize the allocated 'struct zip'.

This commit is contained in:
kientzle 2010-01-23 07:52:44 +00:00
parent 643a6f51c1
commit 164ec789c7

View File

@ -231,7 +231,7 @@ archive_write_set_format_zip(struct archive *_a)
if (a->format_destroy != NULL)
(a->format_destroy)(a);
zip = (struct zip *) malloc(sizeof(*zip));
zip = (struct zip *) calloc(1, sizeof(*zip));
if (zip == NULL) {
archive_set_error(&a->archive, ENOMEM, "Can't allocate zip data");
return (ARCHIVE_FATAL);