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

oldstable
Robert Shearman 2006-07-13 13:06:15 +01:00 committed by Alexandre Julliard
parent 669780c24f
commit 7084f14073
1 changed files with 1 additions and 1 deletions

View File

@ -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),