Robert Shearman : dbghelp: Fix the finding of PDB DS-type files.
Module: wine Branch: refs/heads/master Commit: 7084f14073467f2a5b51a66dec9677b2744dd07e URL: http://source.winehq.org/git/?p=wine.git;a=commit;h=7084f14073467f2a5b51a66d... Author: Robert Shearman <rob(a)codeweavers.com> Date: Thu Jul 13 13:06:15 2006 +0100 dbghelp: Fix the finding of PDB DS-type files. --- dlls/dbghelp/path.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/dlls/dbghelp/path.c b/dlls/dbghelp/path.c index bedc0f0..f297011 100644 --- a/dlls/dbghelp/path.c +++ b/dlls/dbghelp/path.c @@ -309,7 +309,7 @@ static BOOL CALLBACK sffip_cb(LPCSTR buf 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),
participants (1)
-
Alexandre Julliard