[fdo-commits] r2499 - trunk/Fdo/Unmanaged/Src/Fdo/Xml
svn_fdo at osgeo.org
svn_fdo at osgeo.org
Sun Feb 11 17:42:53 EST 2007
Author: warmerdam
Date: 2007-02-11 17:42:53 -0500 (Sun, 11 Feb 2007)
New Revision: 2499
Modified:
trunk/Fdo/Unmanaged/Src/Fdo/Xml/FeaturePropertyReaderImpl.cpp
Log:
FDO1234(fake): length arg to Xerces Base64 decode() should be
unsigned int, not FdoSize. This matters on 64bit platforms.
Modified: trunk/Fdo/Unmanaged/Src/Fdo/Xml/FeaturePropertyReaderImpl.cpp
===================================================================
--- trunk/Fdo/Unmanaged/Src/Fdo/Xml/FeaturePropertyReaderImpl.cpp 2007-02-11 03:12:26 UTC (rev 2498)
+++ trunk/Fdo/Unmanaged/Src/Fdo/Xml/FeaturePropertyReaderImpl.cpp 2007-02-11 22:42:53 UTC (rev 2499)
@@ -532,7 +532,7 @@
break;
case ParsingState_base64Binary:
{
- FdoSize len;
+ unsigned int len;
XMLByte* decoded = XERCES_CPP_NAMESPACE::Base64::decode((const XMLByte*)(const char*)m_dataProperty, &len);
if (decoded != NULL) {
curFeatureHandler->FeatureBinaryData(m_featureContext, decoded, len);
More information about the fdo-commits
mailing list