kernel32: Remove unused variables.
This commit is contained in:
parent
b1d4793344
commit
1973a808c2
|
@ -1236,12 +1236,11 @@ UINT WINAPI GetPrivateProfileIntW( LPCWSTR section, LPCWSTR entry,
|
|||
{
|
||||
WCHAR buffer[30];
|
||||
UNICODE_STRING bufferW;
|
||||
INT len;
|
||||
ULONG result;
|
||||
|
||||
if (!(len = GetPrivateProfileStringW( section, entry, emptystringW,
|
||||
buffer, sizeof(buffer)/sizeof(WCHAR),
|
||||
filename )))
|
||||
if (GetPrivateProfileStringW( section, entry, emptystringW,
|
||||
buffer, sizeof(buffer)/sizeof(WCHAR),
|
||||
filename ) == 0)
|
||||
return def_val;
|
||||
|
||||
/* FIXME: if entry can be found but it's empty, then Win16 is
|
||||
|
|
|
@ -830,7 +830,6 @@ static IMAGE_NT_HEADERS *get_nt_header( void *base, DWORD mapping_size )
|
|||
static IMAGE_SECTION_HEADER *get_section_header( void *base, DWORD mapping_size, DWORD *num_sections )
|
||||
{
|
||||
IMAGE_NT_HEADERS *nt;
|
||||
IMAGE_SECTION_HEADER *sec;
|
||||
DWORD section_ofs;
|
||||
|
||||
nt = get_nt_header( base, mapping_size );
|
||||
|
@ -839,7 +838,7 @@ static IMAGE_SECTION_HEADER *get_section_header( void *base, DWORD mapping_size,
|
|||
|
||||
/* check that we don't go over the end of the file accessing the sections */
|
||||
section_ofs = FIELD_OFFSET(IMAGE_NT_HEADERS, OptionalHeader) + nt->FileHeader.SizeOfOptionalHeader;
|
||||
if ((nt->FileHeader.NumberOfSections * sizeof (*sec) + section_ofs) > mapping_size)
|
||||
if ((nt->FileHeader.NumberOfSections * sizeof (IMAGE_SECTION_HEADER) + section_ofs) > mapping_size)
|
||||
return NULL;
|
||||
|
||||
if (num_sections)
|
||||
|
|
Loading…
Reference in New Issue