From 5a1a300892721277f2a825e4ec6a84f64c1b305d Mon Sep 17 00:00:00 2001 From: Matthias Clasen Date: Mon, 7 May 2012 23:19:21 -0400 Subject: [PATCH] ostree-pull: Avoid an uninitialized variable warning --- src/ostree/ostree-pull.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ostree/ostree-pull.c b/src/ostree/ostree-pull.c index fedb6565..766e1cba 100644 --- a/src/ostree/ostree-pull.c +++ b/src/ostree/ostree-pull.c @@ -340,7 +340,7 @@ find_object_in_remote_packs (OtPullData *pull_data, GError **error) { gboolean ret = FALSE; - guint64 ret_offset; + guint64 ret_offset = 0; guint i; GPtrArray *iter; ot_lvariant GVariant *csum_bytes_v = NULL;