Use strncmp.

svn path=/trunk/; revision=7445
This commit is contained in:
Steven Edwards 2004-01-03 23:52:40 +00:00
parent edb38c2bd0
commit ebe1289de5

View file

@ -602,7 +602,7 @@ static VS_VERSION_INFO_STRUCT16 *VersionInfo16_FindChild( VS_VERSION_INFO_STRUCT
while ( (DWORD)child < (DWORD)info + info->wLength )
{
if ( !strncasecmp( child->szKey, szKey, cbKey ) )
if ( !strncmp( child->szKey, szKey, cbKey ) )
return child;
if (!(child->wLength)) return NULL;