Initialize save_errno. (#355206, Mike Edenfield)

2006-09-10  Matthias Clasen  <mclasen@redhat.com>

	* glib/gstdio.c (g_rename): Initialize save_errno.
	(#355206, Mike Edenfield)
This commit is contained in:
Matthias Clasen 2006-09-10 05:13:52 +00:00 committed by Matthias Clasen
parent 2d96899c5b
commit 4a7aeef16f
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2006-09-10 Matthias Clasen <mclasen@redhat.com>
* glib/gstdio.c (g_rename): Initialize save_errno.
(#355206, Mike Edenfield)
2006-09-03 Matthias Clasen <mclasen@redhat.com>
* glib/gerror.c: Allocate GErrors using the slice allocator.

View File

@ -261,7 +261,7 @@ g_rename (const gchar *oldfilename,
wchar_t *woldfilename = g_utf8_to_utf16 (oldfilename, -1, NULL, NULL, NULL);
wchar_t *wnewfilename;
int retval;
int save_errno;
int save_errno = 0;
if (woldfilename == NULL)
{