From: Colin Walters Date: Thu, 21 Jun 2012 16:06:34 +0000 (-0400) Subject: tests: Add missing initializer for return value X-Git-Tag: 2.33.3~20 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=598c3d233a560c10133b9a8a426ae87288a98584;p=platform%2Fupstream%2Fglib.git tests: Add missing initializer for return value --- diff --git a/gio/tests/test-pipe-unix.c b/gio/tests/test-pipe-unix.c index f4e07a4..07f6198 100644 --- a/gio/tests/test-pipe-unix.c +++ b/gio/tests/test-pipe-unix.c @@ -105,7 +105,7 @@ test_bidi_pipe (GIOStream **left, GOutputStream *left_out = NULL; GInputStream *right_in = NULL; GOutputStream *right_out = NULL; - gboolean ret; + gboolean ret = FALSE; if (!test_pipe (&left_in, &right_out, error)) goto out;