Jacek Caban : mshtml: Use uri_nofrag instead of full URI in navigate_anchor .

Alexandre Julliard julliard at winehq.org
Fri Nov 29 13:24:27 CST 2013


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

Author: Jacek Caban <jacek at codeweavers.com>
Date:   Fri Nov 29 12:58:41 2013 +0100

mshtml: Use uri_nofrag instead of full URI in navigate_anchor.

---

 dlls/mshtml/htmlanchor.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/dlls/mshtml/htmlanchor.c b/dlls/mshtml/htmlanchor.c
index 32b39cb..97ef900 100644
--- a/dlls/mshtml/htmlanchor.c
+++ b/dlls/mshtml/htmlanchor.c
@@ -121,7 +121,7 @@ static HRESULT navigate_anchor(HTMLAnchorElement *This)
         if(*href) {
             if(!window)
                 window = This->element.node.doc->basedoc.window;
-            hres = navigate_url(window, href, window->uri, BINDING_NAVIGATED);
+            hres = navigate_url(window, href, window->uri_nofrag, BINDING_NAVIGATED);
         }else {
             TRACE("empty href\n");
             hres = S_OK;




More information about the wine-cvs mailing list