You are viewing a plain text version of this content. The canonical link for it is here.
Posted to c-users@xalan.apache.org by Mark Weaver <ma...@npsl.co.uk> on 2004/04/21 11:58:36 UTC

bug in XalanEXSLTFunctionDecodeURI::execute

in XalanEXST/XalanEXSLTString.cpp.

if (byte2 & 0x80 == 0)
...

There are a few of these.  This comes out as:

if (byte2 & (0x80 == 0))
if (byte2 & 0)
if (0)

which is presumably not was intended.  The compiler picked this one up, not
me :)

cvs diff attached.