Put variable definitions at start of block

This commit is contained in:
Shixin Zeng 2009-08-20 23:51:38 +03:00 committed by Tor Lillqvist
parent 428d7bd27b
commit e10db38f0d
2 changed files with 3 additions and 2 deletions

View File

@ -277,6 +277,7 @@ correct_prefix (gchar **path)
if (strncmp (*path, GTK_PREFIX "/", strlen (GTK_PREFIX "/")) == 0 ||
strncmp (*path, GTK_PREFIX "\\", strlen (GTK_PREFIX "\\")) == 0)
{
gchar *tem = NULL;
if (strlen(*path) > 5 && strncmp (*path - 5, ".libs", 5) == 0)
{
/* We are being run from inside the build tree, and shouldn't mess about. */
@ -290,7 +291,7 @@ correct_prefix (gchar **path)
* builder's machine. Replace the build-time prefix with the
* installation prefix on this machine.
*/
gchar *tem = *path;
tem = *path;
*path = g_strconcat (get_toplevel (), tem + strlen (GTK_PREFIX), NULL);
g_free (tem);
}

View File

@ -550,8 +550,8 @@ get_windows_version ()
if (!have_version)
{
have_version = TRUE;
OSVERSIONINFOEX osvi;
have_version = TRUE;
ZeroMemory (&osvi, sizeof (OSVERSIONINFOEX));
osvi.dwOSVersionInfoSize = sizeof (OSVERSIONINFOEX);