This is the last fix for GCC4.2. Now everything can be built with -O3

svn path=/trunk/; revision=25582
This commit is contained in:
Thomas Bluemel 2007-01-21 23:54:59 +00:00
parent 3b4ec883fa
commit 4410a2013e
2 changed files with 2 additions and 2 deletions

View file

@ -1033,7 +1033,7 @@ WCHAR *PARSER_get_dest_dir( INFCONTEXT *context )
const WCHAR *dir;
WCHAR *ptr, *ret;
INT dirid;
unsigned int len1;
unsigned int len1 = 0;
DWORD len2;
if (!SetupGetIntField( context, 1, &dirid )) return NULL;

View file

@ -125,7 +125,7 @@ IntGdiExtEscape(
&BitmapObj->SurfObj,
Escape,
InSize,
(PVOID)InData,
(PVOID)((ULONG_PTR)InData),
OutSize,
(PVOID)OutData);
}