[Easysoap-checkins] CVS: easysoap/tests interopclient.cpp, 1.48, 1.49
Status: Beta
Brought to you by:
dcrowley
From: David C. <dcr...@us...> - 2006-11-09 20:53:11
|
Update of /cvsroot/easysoap/easysoap/tests In directory sc8-pr-cvs5.sourceforge.net:/tmp/cvs-serv15186/tests Modified Files: interopclient.cpp Log Message: Modifications for gcc 4.1.1 Added the MSVC8.0 directory for autoconf/make Index: interopclient.cpp =================================================================== RCS file: /cvsroot/easysoap/easysoap/tests/interopclient.cpp,v retrieving revision 1.48 retrieving revision 1.49 diff -u -r1.48 -r1.49 --- interopclient.cpp 24 Sep 2005 07:24:24 -0000 1.48 +++ interopclient.cpp 9 Nov 2006 20:53:04 -0000 1.49 @@ -1639,7 +1639,9 @@ if (*w == '%') { ++w; - *s++ = char((hexval(*w++) << 4) | hexval(*w++)); + char a = *w++; + char b = *w++; + *s++ = char((hexval(a) << 4) | hexval(b)); } else *s++ = *w++; |