Commit 6d783941 authored by Eric Pouech's avatar Eric Pouech Committed by Alexandre Julliard

dbghelp: Allow an extra stream index entry in PDB files.

Latest MSVC version use this. Signed-off-by: 's avatarEric Pouech <epouech@codeweavers.com>
parent 525f990e
......@@ -762,6 +762,7 @@ static void pdb_dump_symbols(struct pdb_reader* reader)
sidx.sections_stream);
break;
case sizeof(PDB_STREAM_INDEXES):
case sizeof(PDB_STREAM_INDEXES) + 2:
memcpy(&sidx,
(const char*)symbols + sizeof(PDB_SYMBOLS) + symbols->module_size +
symbols->sectcontrib_size + symbols->segmap_size + symbols->srcmodule_size +
......
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