[SHELL32]
authorOlaf Siejka <caemyr@openmailbox.org>
Tue, 29 Mar 2011 21:41:14 +0000 (21:41 +0000)
committerOlaf Siejka <caemyr@openmailbox.org>
Tue, 29 Mar 2011 21:41:14 +0000 (21:41 +0000)
- Fix compile warning (uninitialized use). Based on patch by Edijs Kolesnikovics <terminedijs at yahoo dot com> slightly modified by Aleksiej
See issue #6058 for more details.

svn path=/trunk/; revision=51196

reactos/dll/win32/shell32/shlfileop.c

index 8fa5041..ddf6670 100644 (file)
@@ -584,7 +584,7 @@ BOOL
 QueueFile(
     FILE_OPERATION_CONTEXT * Context)
 {
-    FILE_ENTRY * from, *to;
+    FILE_ENTRY * from, *too = NULL;
     BOOL bRet = FALSE;
 
     if (Context->Index >= Context->from->dwNumFiles)