repo-pull: Allocate with g_new0 rather than g_new.

Conflicts:

	src/libostree/ostree-repo-pull.c
This commit is contained in:
Colin Walters 2013-09-26 14:38:37 -04:00
parent 7d72a4b941
commit 2ef652439d

View File

@ -994,7 +994,7 @@ enqueue_one_object_request (OtPullData *pull_data,
pull_data->n_outstanding_content_fetches++;
pull_data->n_requested_content++;
}
fetch_data = g_new (FetchObjectData, 1);
fetch_data = g_new0 (FetchObjectData, 1);
fetch_data->pull_data = pull_data;
fetch_data->object = g_variant_ref (object_name);
fetch_data->is_detached_meta = is_detached_meta;