[PATCH 2/5] dbghelp/msc: silence some FIXME:s

Eric Pouech eric.pouech at gmail.com
Wed Dec 15 06:32:00 CST 2021


reading gecko's PDB generate a lot of those

Signed-off-by: Eric Pouech <eric.pouech at gmail.com>

---
 dlls/dbghelp/msc.c    |    2 +-
 dlls/dbghelp/symbol.c |    2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/dlls/dbghelp/msc.c b/dlls/dbghelp/msc.c
index 894d01a4c00..317f7bb84b5 100644
--- a/dlls/dbghelp/msc.c
+++ b/dlls/dbghelp/msc.c
@@ -1926,7 +1926,7 @@ static struct symt_inlinesite* codeview_create_inline_site(const struct msc_debu
 
     if (!found)
     {
-        FIXME("Couldn't find start address of inlined\n");
+        WARN("Couldn't find start address of inlined\n");
         return NULL;
     }
 
diff --git a/dlls/dbghelp/symbol.c b/dlls/dbghelp/symbol.c
index 2443dbf7e73..d3ba4521fa0 100644
--- a/dlls/dbghelp/symbol.c
+++ b/dlls/dbghelp/symbol.c
@@ -612,7 +612,7 @@ BOOL symt_add_inlinesite_range(struct module* module,
             {
                 struct addr_range* ar = (struct addr_range*)vector_at(&inlined->vranges, i);
                 if (!addr_range_disjoint(ar, p) && !addr_range_inside(ar, p))
-                    FIXME("Added addr_range not compatible with parent\n");
+                    WARN("Added addr_range not compatible with parent\n");
             }
         }
     }




More information about the wine-devel mailing list