[PATCH] Ignore XML Property ResolveExternals

Alistair Leslie-Hughes leslie_alistair at hotmail.com
Thu Mar 10 18:32:32 CST 2011


---
 dlls/msxml3/domdoc.c |    4 +++-
 1 files changed, 3 insertions(+), 1 deletions(-)

diff --git a/dlls/msxml3/domdoc.c b/dlls/msxml3/domdoc.c
index beec0b4..a1f7f41 100644
--- a/dlls/msxml3/domdoc.c
+++ b/dlls/msxml3/domdoc.c
@@ -73,6 +73,7 @@ static const WCHAR PropertyProhibitDTDW[] = {'P','r','o','h','i','b','i','t','D'
 static const WCHAR PropertyNewParserW[] = {'N','e','w','P','a','r','s','e','r',0};
 static const WCHAR PropValueXPathW[] = {'X','P','a','t','h',0};
 static const WCHAR PropValueXSLPatternW[] = {'X','S','L','P','a','t','t','e','r','n',0};
+static const WCHAR PropValueResolveExternalsW[] = {'R','e','s','o','l','v','e','E','x','t','e','r','n','a','l','s',0};
 
 /* Anything that passes the test_get_ownerDocument()
  * tests can go here (data shared between all instances).
@@ -2953,7 +2954,8 @@ static HRESULT WINAPI domdoc_setProperty(
         return hr;
     }
     else if (lstrcmpiW(p, PropertyProhibitDTDW) == 0 ||
-             lstrcmpiW(p, PropertyNewParserW) == 0)
+             lstrcmpiW(p, PropertyNewParserW) == 0 ||
+             lstrcmpiW(p, PropValueResolveExternalsW) == 0)
     {
         /* Ignore */
         FIXME("Ignoring property %s, value %d\n", debugstr_w(p), V_BOOL(&var));
-- 
1.7.1


--------------000902040201020606010900--



More information about the wine-patches mailing list