Do not mix declarations with code.

https://bugzilla.gnome.org/show_bug.cgi?id=781298
This commit is contained in:
John Lindgren
2017-04-13 22:31:29 -04:00
committed by Руслан Ижбулатов
parent c192595268
commit 7641cf29e3

View File

@@ -317,6 +317,11 @@ gboolean
g_file_test (const gchar *filename, g_file_test (const gchar *filename,
GFileTest test) GFileTest test)
{ {
#ifdef G_OS_WIN32
int attributes;
wchar_t *wfilename;
#endif
g_return_val_if_fail (filename != NULL, FALSE); g_return_val_if_fail (filename != NULL, FALSE);
#ifdef G_OS_WIN32 #ifdef G_OS_WIN32
@@ -327,8 +332,7 @@ g_file_test (const gchar *filename,
# ifndef FILE_ATTRIBUTE_DEVICE # ifndef FILE_ATTRIBUTE_DEVICE
# define FILE_ATTRIBUTE_DEVICE 64 # define FILE_ATTRIBUTE_DEVICE 64
# endif # endif
int attributes; wfilename = g_utf8_to_utf16 (filename, -1, NULL, NULL, NULL);
wchar_t *wfilename = g_utf8_to_utf16 (filename, -1, NULL, NULL, NULL);
if (wfilename == NULL) if (wfilename == NULL)
return FALSE; return FALSE;