mirror of
https://github.com/reactos/reactos.git
synced 2024-12-27 17:44:45 +00:00
Initialize the "toc" field in the pdb_lookup structure in order
to prevent pdb_free_lookup from trying to delete invalid pointers. svn path=/trunk/; revision=14232
This commit is contained in:
parent
0f4cfdb301
commit
34484a48d9
1 changed files with 2 additions and 0 deletions
|
@ -2215,6 +2215,7 @@ static BOOL codeview_process_info(const struct process* pcs,
|
|||
pdb_lookup.filename = pdb->name;
|
||||
pdb_lookup.kind = PDB_JG;
|
||||
pdb_lookup.u.jg.timestamp = pdb->timestamp;
|
||||
pdb_lookup.u.jg.toc = NULL;
|
||||
ret = pdb_process_file(pcs, msc_dbg, &pdb_lookup);
|
||||
break;
|
||||
}
|
||||
|
@ -2227,6 +2228,7 @@ static BOOL codeview_process_info(const struct process* pcs,
|
|||
pdb_lookup.filename = rsds->name;
|
||||
pdb_lookup.kind = PDB_DS;
|
||||
pdb_lookup.u.ds.guid = rsds->guid;
|
||||
pdb_lookup.u.ds.toc = NULL;
|
||||
ret = pdb_process_file(pcs, msc_dbg, &pdb_lookup);
|
||||
break;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue