Small fixes to make the Windows build work again after r23412

git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@23415 57a11ea4-9604-0410-9ed3-97b8803252fd
This commit is contained in:
Geert Janssens 2013-11-20 10:01:56 +00:00
parent 0c7504c9ef
commit 5a02a247f8

View File

@ -786,7 +786,7 @@ qof_session_load_from_xml_file_v2_full(
See https://bugzilla.gnome.org/show_bug.cgi?id=712528 for more info */ See https://bugzilla.gnome.org/show_bug.cgi?id=712528 for more info */
gchar *filename = fbe->fullpath; gchar *filename = fbe->fullpath;
#ifdef G_OS_WIN32 #ifdef G_OS_WIN32
filename = g_win32_locale_filename_from_utf8(fbe->fulpath); filename = g_win32_locale_filename_from_utf8(fbe->fullpath);
if (filename) if (filename)
{ {
#endif #endif
@ -808,9 +808,9 @@ qof_session_load_from_xml_file_v2_full(
} }
#ifdef G_OS_WIN32 #ifdef G_OS_WIN32
g_free(filename); g_free(filename);
}
else else
retval = FALSE; retval = FALSE;
}
#endif #endif
} }