summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorColin Walters <walters@verbum.org>2019-10-16 13:48:20 +0000
committerColin Walters <walters@verbum.org>2019-10-16 13:48:20 +0000
commit946659aacf08bc238e3ceda4475a855c165b06c5 (patch)
treed2d6188307b5a6f08042cd218892ccfe1067f777
parenta8dc90b02fbbd7b951be59704d4c5969463ab8f2 (diff)
downloadostree-946659aacf08bc238e3ceda4475a855c165b06c5.tar.gz
prune: [scan-build] Initialize a variable
Another false positive because we only read this if `opt_keep_younger_than` is `TRUE`, but let's initialize variables on general principle.
-rw-r--r--src/ostree/ot-builtin-prune.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ostree/ot-builtin-prune.c b/src/ostree/ot-builtin-prune.c
index 2f560d14..fd2ab05f 100644
--- a/src/ostree/ot-builtin-prune.c
+++ b/src/ostree/ot-builtin-prune.c
@@ -205,7 +205,7 @@ ostree_builtin_prune (int argc, char **argv, OstreeCommandInvocation *invocation
g_autoptr(GHashTable) all_refs = NULL;
g_autoptr(GHashTable) reachable = ostree_repo_traverse_new_reachable ();
g_autoptr(GHashTable) retain_branch_depth = g_hash_table_new_full (g_str_hash, g_str_equal, g_free, NULL);
- struct timespec keep_younger_than_ts;
+ struct timespec keep_younger_than_ts = {0, };
GHashTableIter hash_iter;
gpointer key, value;