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 ...@@ -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 */ /* bitfield: first dword is len (in dword), then data */
ok_bits = pdw; ok_bits = pdw;
pdw += *ok_bits++ + 1; pdw += *ok_bits++ + 1;
if (*pdw++ != 0) pdw += *pdw + 1; /* skip deleted vector */
{
FIXME("unexpected value\n");
return FALSE;
}
for (i = j = 0; i < count; i++) 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