Michael Stefaniuc : mshtml/tests: '%' doesn' t needs escaping in a C string (sparse).

Alexandre Julliard julliard at wine.codeweavers.com
Wed Mar 11 10:00:43 CDT 2015


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

Author: Michael Stefaniuc <mstefani at redhat.de>
Date:   Wed Mar 11 11:00:10 2015 +0100

mshtml/tests: '%' doesn't needs escaping in a C string (sparse).

---

 dlls/mshtml/tests/dom.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dlls/mshtml/tests/dom.c b/dlls/mshtml/tests/dom.c
index f083bae..fca96a0 100644
--- a/dlls/mshtml/tests/dom.c
+++ b/dlls/mshtml/tests/dom.c
@@ -7764,8 +7764,8 @@ static void test_elems(IHTMLDocument2 *doc)
         test_anchor_put_search((IUnknown*)elem, "?????word???press");
         test_anchor_search((IUnknown*)elem, "?????word???press", FALSE);
 
-        test_anchor_put_search((IUnknown*)elem, "?q=\%E4\%BD\%A0\%E5\%A5\%BD"); /* encoded cjk characters */
-        test_anchor_search((IUnknown*)elem, "?q=\%E4\%BD\%A0\%E5\%A5\%BD", FALSE);
+        test_anchor_put_search((IUnknown*)elem, "?q=%E4%BD%A0%E5%A5%BD"); /* encoded cjk characters */
+        test_anchor_search((IUnknown*)elem, "?q=%E4%BD%A0%E5%A5%BD", FALSE);
 
         test_anchor_put_search((IUnknown*)elem, "?how?old=are");
         test_anchor_search((IUnknown*)elem, "?how?old=are", FALSE);




More information about the wine-cvs mailing list