Andrey Turkin : dbghelp: Treat const addresses as const unsigned.

Alexandre Julliard julliard at winehq.org
Wed Dec 26 10:05:08 CST 2007


Module: wine
Branch: master
Commit: a38cd7ac01b694c21f52c565b2c312ceb5820bb4
URL:    http://source.winehq.org/git/wine.git/?a=commit;h=a38cd7ac01b694c21f52c565b2c312ceb5820bb4

Author: Andrey Turkin <andrey.turkin at gmail.com>
Date:   Wed Dec 26 11:51:18 2007 +0300

dbghelp: Treat const addresses as const unsigned.

This will prevent winedbg from spamming about __wine_dbch__default.

---

 dlls/dbghelp/dwarf.c |    1 +
 1 files changed, 1 insertions(+), 0 deletions(-)

diff --git a/dlls/dbghelp/dwarf.c b/dlls/dbghelp/dwarf.c
index 66c761c..a03b049 100644
--- a/dlls/dbghelp/dwarf.c
+++ b/dlls/dbghelp/dwarf.c
@@ -1329,6 +1329,7 @@ static void dwarf2_parse_variable(dwarf2_subprogram_t* subpgm,
         case DW_FORM_data2:
         case DW_FORM_data4:
         case DW_FORM_udata:
+        case DW_FORM_addr:
             v.n1.n2.vt = VT_UI4;
             v.n1.n2.n3.lVal = value.u.uvalue;
             break;




More information about the wine-cvs mailing list