Author: jberry
Date: Mon Aug 15 11:49:19 2005
New Revision: 232853
URL: http://svn.apache.org/viewcvs?rev=232853&view=rev
Log:
Must always pass the manager to XMLMakeMacFile now
Modified:
xerces/c/branches/xerces-2.7/src/xercesc/util/Platforms/MacOS/MacOSPlatformUtils.cpp
Modified:
xerces/c/branches/xerces-2.7/src/xercesc/util/Platforms/MacOS/MacOSPlatformUtils.cpp
URL:
http://svn.apache.org/viewcvs/xerces/c/branches/xerces-2.7/src/xercesc/util/Platforms/MacOS/MacOSPlatformUtils.cpp?rev=232853&r1=232852&r2=232853&view=diff
==============================================================================
---
xerces/c/branches/xerces-2.7/src/xercesc/util/Platforms/MacOS/MacOSPlatformUtils.cpp
(original)
+++
xerces/c/branches/xerces-2.7/src/xercesc/util/Platforms/MacOS/MacOSPlatformUtils.cpp
Mon Aug 15 11:49:19 2005
@@ -229,7 +229,7 @@
if (!gFileSystemCompatible)
ThrowXMLwithMemMgr1(XMLPlatformUtilsException,
XMLExcepts::File_CouldNotOpenFile, fileName, manager);
- Janitor<XMLMacAbstractFile> file(XMLMakeMacFile());
+ Janitor<XMLMacAbstractFile> file(XMLMakeMacFile(manager));
return (file->open(fileName, true)) ? file.release() : NULL;
}
@@ -243,7 +243,7 @@
if (!gFileSystemCompatible)
ThrowXMLwithMemMgr1(XMLPlatformUtilsException,
XMLExcepts::File_CouldNotOpenFile, fileName, manager);
- Janitor<XMLMacAbstractFile> file(XMLMakeMacFile());
+ Janitor<XMLMacAbstractFile> file(XMLMakeMacFile(manager));
return (file->open(fileName, true)) ? file.release() : NULL;
}
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]