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

Alexandre Julliard julliard at wine.codeweavers.com
Thu Jul 13 10:12:25 CDT 2006


Module: wine
Branch: refs/heads/master
Commit: 7084f14073467f2a5b51a66dec9677b2744dd07e
URL:    http://source.winehq.org/git/?p=wine.git;a=commit;h=7084f14073467f2a5b51a66dec9677b2744dd07e

Author: Robert Shearman <rob at 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),




More information about the wine-cvs mailing list