Skip to content
Snippets Groups Projects
Commit 17d0d4e8 authored by Lawson Whitney's avatar Lawson Whitney Committed by Alexandre Julliard
Browse files

Don't hang on the last child if it's not wanted.

parent 9ba500ca
No related branches found
No related tags found
No related merge requests found
......@@ -385,6 +385,7 @@ VS_VERSION_INFO_STRUCT16 *VersionInfo16_FindChild( VS_VERSION_INFO_STRUCT16 *inf
if ( !lstrncmpi32A( child->szKey, szKey, cbKey ) )
return child;
if (!(child->wLength)) return NULL;
child = VersionInfo16_Next( child );
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment