diff options
author | Matthias Clasen <mclasen@redhat.com> | 2013-06-15 23:36:10 -0400 |
---|---|---|
committer | Matthias Clasen <mclasen@redhat.com> | 2013-06-15 23:36:10 -0400 |
commit | 137e6f4d5ff4a86a1f28276fd7431281a54b8c74 (patch) | |
tree | 1940374c555314f04ddd0c76e468b0f1ecef116c /testsuite | |
parent | 945e7a08f3aba49350fd63483ae9afa67d3ea230 (diff) | |
download | gtk+-137e6f4d5ff4a86a1f28276fd7431281a54b8c74.tar.gz |
Avoid an uninitialized variable access
Diffstat (limited to 'testsuite')
-rw-r--r-- | testsuite/gtk/defaultvalue.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/testsuite/gtk/defaultvalue.c b/testsuite/gtk/defaultvalue.c index 55875a61e8..f9609648ce 100644 --- a/testsuite/gtk/defaultvalue.c +++ b/testsuite/gtk/defaultvalue.c @@ -92,6 +92,7 @@ test_type (gconstpointer data) else if (g_type_is_a (type, GDK_TYPE_WINDOW)) { GdkWindowAttr attributes; + attributes.wclass = GDK_INPUT_OUTPUT; attributes.window_type = GDK_WINDOW_TEMP; attributes.event_mask = 0; attributes.width = 100; |