mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2024-11-11 11:56:16 +01:00
fix uninitial variable
This commit is contained in:
parent
1bfac1e474
commit
2b8682191c
@ -372,7 +372,7 @@ _g_win32_readlink_handle_raw (HANDLE h,
|
|||||||
{
|
{
|
||||||
DWORD error_code;
|
DWORD error_code;
|
||||||
DWORD returned_bytes = 0;
|
DWORD returned_bytes = 0;
|
||||||
BYTE *data;
|
BYTE *data = NULL;
|
||||||
gsize to_copy;
|
gsize to_copy;
|
||||||
/* This is 16k. It's impossible to make DeviceIoControl() tell us
|
/* This is 16k. It's impossible to make DeviceIoControl() tell us
|
||||||
* the required size. NtFsControlFile() does have such a feature,
|
* the required size. NtFsControlFile() does have such a feature,
|
||||||
|
Loading…
Reference in New Issue
Block a user