From: <ny...@us...> - 2006-12-29 04:51:13
|
Revision: 224 http://svn.sourceforge.net/pmplib/?rev=224&view=rev Author: nyaochi Date: 2006-12-28 20:51:14 -0800 (Thu, 28 Dec 2006) Log Message: ----------- Fixed a critical bug in ucs2incmp() Modified Paths: -------------- trunk/pmplib/lib/ucs2/ucs2char.c Modified: trunk/pmplib/lib/ucs2/ucs2char.c =================================================================== --- trunk/pmplib/lib/ucs2/ucs2char.c 2006-12-29 03:02:59 UTC (rev 223) +++ trunk/pmplib/lib/ucs2/ucs2char.c 2006-12-29 04:51:14 UTC (rev 224) @@ -208,7 +208,7 @@ x++; y++; } - return COMP(a, b); + return COMP(ucs2upper(*x), ucs2upper(*y)); } int ucs2memcmp(const ucs2char_t* buf1, const ucs2char_t* buf2, size_t count) This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |