Commit f2d98ea7 authored by Eric Pouech's avatar Eric Pouech Committed by Alexandre Julliard

dbghelp: Skip deleted vector in hash inside PDB header.

parent 135b132d
......@@ -3159,11 +3159,7 @@ static BOOL pdb_load_stream_name_table(struct pdb_file_info* pdb_file, const cha
/* bitfield: first dword is len (in dword), then data */
ok_bits = pdw;
pdw += *ok_bits++ + 1;
if (*pdw++ != 0)
{
FIXME("unexpected value\n");
return FALSE;
}
pdw += *pdw + 1; /* skip deleted vector */
for (i = j = 0; i < count; i++)
{
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment