Eric Pouech : dbghelp: Allow an extra stream index entry in PDB files.
Module: wine Branch: master Commit: 6d7839418ea9589dd7b83f97e9c6aba0b45e18dd URL: https://gitlab.winehq.org/wine/wine/-/commit/6d7839418ea9589dd7b83f97e9c6aba... Author: Eric Pouech <epouech(a)codeweavers.com> Date: Mon Dec 11 11:41:11 2023 +0100 dbghelp: Allow an extra stream index entry in PDB files. Latest MSVC version use this. Signed-off-by: Eric Pouech <epouech(a)codeweavers.com> --- tools/winedump/pdb.c | 1 + 1 file changed, 1 insertion(+) diff --git a/tools/winedump/pdb.c b/tools/winedump/pdb.c index 552fa4d8da8..adc0eadc738 100644 --- a/tools/winedump/pdb.c +++ b/tools/winedump/pdb.c @@ -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 +
participants (1)
-
Alexandre Julliard