[KERNEL32]

* Remove some unused variables. By Andrew Talbot.

svn path=/trunk/; revision=58979
This commit is contained in:
Amine Khaldi 2013-05-09 21:01:41 +00:00
parent 00a1eae887
commit 382d0c0257
2 changed files with 4 additions and 6 deletions

View file

@ -1239,12 +1239,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

View file

@ -833,7 +833,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 );
@ -842,7 +841,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)