From 2ef652439d001ab70fc6000d43a7d0b0bb9ddb8a Mon Sep 17 00:00:00 2001 From: Colin Walters Date: Thu, 26 Sep 2013 14:38:37 -0400 Subject: [PATCH] repo-pull: Allocate with g_new0 rather than g_new. Conflicts: src/libostree/ostree-repo-pull.c --- src/libostree/ostree-repo-pull.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/libostree/ostree-repo-pull.c b/src/libostree/ostree-repo-pull.c index b52e19d2..416e3b15 100644 --- a/src/libostree/ostree-repo-pull.c +++ b/src/libostree/ostree-repo-pull.c @@ -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;