Commit 7084f140 authored by Robert Shearman's avatar Robert Shearman Committed by Alexandre Julliard

dbghelp: Fix the finding of PDB DS-type files.

parent 669780c2
......@@ -309,7 +309,7 @@ static BOOL CALLBACK sffip_cb(LPCSTR buffer, void* user)
WARN("Found %s, but wrong PDB version\n", buffer);
return FALSE;
}
if (!(memcmp(&pdb_lookup.u.ds.guid, (GUID*)s->id, sizeof(GUID))))
if (memcmp(&pdb_lookup.u.ds.guid, (GUID*)s->id, sizeof(GUID)))
{
WARN("Found %s, but wrong GUID: %s %s\n",
buffer, debugstr_guid(&pdb_lookup.u.ds.guid),
......
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