core: Fix gcc uninitialized-variable warning

This commit is contained in:
Colin Walters 2012-05-01 18:52:49 -04:00
parent ce0b639d64
commit 749bf56917
1 changed files with 1 additions and 1 deletions

View File

@ -3439,7 +3439,7 @@ find_object_in_packs (OstreeRepo *self,
{
gboolean ret = FALSE;
guint i;
guint64 ret_pack_offset;
guint64 ret_pack_offset = 0;
gboolean is_meta;
ot_lptrarray GPtrArray *index_checksums = NULL;
ot_lfree char *ret_pack_checksum = NULL;