mirror of
https://github.com/reactos/reactos.git
synced 2024-12-28 18:15:11 +00:00
fix some warnings (gcc 4.2)
svn path=/trunk/; revision=25562
This commit is contained in:
parent
88803f3676
commit
603823ffb8
2 changed files with 2 additions and 2 deletions
|
@ -1515,7 +1515,7 @@ SetupDiLoadClassIcon(
|
|||
{
|
||||
LPWSTR Buffer = NULL;
|
||||
LPCWSTR DllName;
|
||||
INT iconIndex;
|
||||
INT iconIndex = 0;
|
||||
HKEY hKey = INVALID_HANDLE_VALUE;
|
||||
|
||||
hKey = SetupDiOpenClassRegKey(ClassGuid, KEY_QUERY_VALUE);
|
||||
|
|
|
@ -111,7 +111,7 @@ MsfsCreateMailslot(PDEVICE_OBJECT DeviceObject,
|
|||
PMSFS_CCB Ccb;
|
||||
KIRQL oldIrql;
|
||||
PLIST_ENTRY current_entry;
|
||||
PMSFS_FCB current;
|
||||
PMSFS_FCB current = NULL;
|
||||
PMAILSLOT_CREATE_PARAMETERS Buffer;
|
||||
|
||||
DPRINT("MsfsCreateMailslot(DeviceObject %p Irp %p)\n", DeviceObject, Irp);
|
||||
|
|
Loading…
Reference in a new issue