mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2024-11-09 19:06:15 +01:00
Fix redefinition of local variable in gio/gwin32file-sync-stream.c
This commit is contained in:
parent
704c65228f
commit
155657de3e
@ -386,8 +386,8 @@ _file_sync_stream_stat (IStream *self_ptr,
|
||||
|
||||
if (buffer_size == 0)
|
||||
{
|
||||
DWORD error = GetLastError ();
|
||||
return __HRESULT_FROM_WIN32 (error);
|
||||
DWORD my_error = GetLastError ();
|
||||
return __HRESULT_FROM_WIN32 (my_error);
|
||||
}
|
||||
|
||||
buffer = CoTaskMemAlloc (buffer_size);
|
||||
|
Loading…
Reference in New Issue
Block a user