From 7641cf29e32dc8c58adf1829e57b8ebeba07dae8 Mon Sep 17 00:00:00 2001 From: John Lindgren Date: Thu, 13 Apr 2017 22:31:29 -0400 Subject: [PATCH] Do not mix declarations with code. https://bugzilla.gnome.org/show_bug.cgi?id=781298 --- glib/gfileutils.c | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/glib/gfileutils.c b/glib/gfileutils.c index dbf96911e..ca330faaf 100644 --- a/glib/gfileutils.c +++ b/glib/gfileutils.c @@ -317,6 +317,11 @@ gboolean g_file_test (const gchar *filename, GFileTest test) { +#ifdef G_OS_WIN32 + int attributes; + wchar_t *wfilename; +#endif + g_return_val_if_fail (filename != NULL, FALSE); #ifdef G_OS_WIN32 @@ -327,8 +332,7 @@ g_file_test (const gchar *filename, # ifndef FILE_ATTRIBUTE_DEVICE # define FILE_ATTRIBUTE_DEVICE 64 # endif - int attributes; - wchar_t *wfilename = g_utf8_to_utf16 (filename, -1, NULL, NULL, NULL); + wfilename = g_utf8_to_utf16 (filename, -1, NULL, NULL, NULL); if (wfilename == NULL) return FALSE;