Commit b16b3663 authored by Kyrylo Babikov's avatar Kyrylo Babikov Committed by Alexandre Julliard

dbghelp: Fix PDB processing using the FPO stream instead of FPOEXT.

parent f166b298
...@@ -3787,8 +3787,8 @@ static BOOL pdb_process_internal(const struct process *pcs, ...@@ -3787,8 +3787,8 @@ static BOOL pdb_process_internal(const struct process *pcs,
symbols.module_size + symbols.sectcontrib_size + symbols.module_size + symbols.sectcontrib_size +
symbols.segmap_size + symbols.srcmodule_size + symbols.segmap_size + symbols.srcmodule_size +
symbols.pdbimport_size + symbols.unknown2_size); symbols.pdbimport_size + symbols.unknown2_size);
if (PDB_SIDX_FPO < num_sub_streams) if (PDB_SIDX_FPOEXT < num_sub_streams)
pdb_file->fpoext_stream = sub_streams[PDB_SIDX_FPO]; pdb_file->fpoext_stream = sub_streams[PDB_SIDX_FPOEXT];
files_image = pdb_read_strings(pdb_file); files_image = pdb_read_strings(pdb_file);
......
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