Author: faridz
Date: Wed May 14 05:06:06 2008
New Revision: 656244
URL: http://svn.apache.org/viewvc?rev=656244&view=rev
Log:
2008-05-14 Farid Zaripov <[EMAIL PROTECTED]>
* util/charmap.cpp (convert_sym_to_ucs): Fixed bug with
skipping the first digit in symbolic name.
Modified:
stdcxx/branches/4.2.x/util/charmap.cpp
Modified: stdcxx/branches/4.2.x/util/charmap.cpp
URL:
http://svn.apache.org/viewvc/stdcxx/branches/4.2.x/util/charmap.cpp?rev=656244&r1=656243&r2=656244&view=diff
==============================================================================
--- stdcxx/branches/4.2.x/util/charmap.cpp (original)
+++ stdcxx/branches/4.2.x/util/charmap.cpp Wed May 14 05:06:06 2008
@@ -649,7 +649,7 @@
sym.c_str ());
}
- const unsigned long val = std::strtoul (&*++it, (char**)0, 16);
+ const unsigned long val = std::strtoul (&*it, (char**)0, 16);
if (_RWSTD_WCHAR_MAX <= val)
issue_diag (E_UCS, true, 0,