Author: cargilld
Date: Wed Oct 12 06:01:04 2005
New Revision: 314873
URL: http://svn.apache.org/viewcvs?rev=314873&view=rev
Log:
Previous versions of xercesc would treat \directory\file.xml as a relative
path. Fix for compatiblity.
Modified:
xerces/c/branches/xerces-2.7/src/xercesc/util/Platforms/Win32/Win32PlatformUtils.cpp
Modified:
xerces/c/branches/xerces-2.7/src/xercesc/util/Platforms/Win32/Win32PlatformUtils.cpp
URL:
http://svn.apache.org/viewcvs/xerces/c/branches/xerces-2.7/src/xercesc/util/Platforms/Win32/Win32PlatformUtils.cpp?rev=314873&r1=314872&r2=314873&view=diff
==============================================================================
---
xerces/c/branches/xerces-2.7/src/xercesc/util/Platforms/Win32/Win32PlatformUtils.cpp
(original)
+++
xerces/c/branches/xerces-2.7/src/xercesc/util/Platforms/Win32/Win32PlatformUtils.cpp
Wed Oct 12 06:01:04 2005
@@ -584,7 +584,7 @@
// If it starts with a double slash, then it cannot be relative since
// it's a remote file.
//
- if (isBackSlash(toCheck[0]) && isBackSlash(toCheck[1]))
+ if (isBackSlash(toCheck[0]))
return false;
// Else assume its a relative path
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]