summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorColin Walters <walters@verbum.org>2014-07-22 13:58:53 -0400
committerColin Walters <walters@verbum.org>2014-07-23 07:43:41 -0400
commitfeec280b7c5c7b9198e34b10b4f5764c9c3c4505 (patch)
treec6a9d6e16a195b31a72b98385cbca1703aa81c06
parent9060a85193a0e15f67568ea6cac3a082fbcab30f (diff)
gfile: Initialize variable to pacify static analysis
Not a real bug, but will quiet the analysis. https://bugzilla.gnome.org/show_bug.cgi?id=733576
-rw-r--r--gio/gfile.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gio/gfile.c b/gio/gfile.c
index 9cf3f4dd0..d69c0d5dd 100644
--- a/gio/gfile.c
+++ b/gio/gfile.c
@@ -7507,7 +7507,7 @@ measure_disk_usage_thread (GTask *task,
{
MeasureTaskData *data = task_data;
GError *error = NULL;
- MeasureResult result;
+ MeasureResult result = { 0, };
if (g_file_measure_disk_usage (source_object, data->flags, cancellable,
data->progress_callback ? measure_disk_usage_progress : NULL, task,