Skip to content
Snippets Groups Projects
Commit b2e71b2b authored by Jason Edward Stewart's avatar Jason Edward Stewart
Browse files

fairly serious error in the two XMLCh* constructor, the fURL member

was being improperly initialized with the (systemID,publicID) instead
of (baseId,systemId)


git-svn-id: https://svn.apache.org/repos/asf/xerces/c/trunk@173639 13f79535-47bb-0310-9956-ffa450edef68
parent 9bba3407
No related branches found
No related tags found
No related merge requests found
......@@ -56,8 +56,13 @@
/**
* $Log$
* Revision 1.1 2002/02/01 22:21:50 peiyongz
* Initial revision
* Revision 1.2 2002/04/25 00:12:34 jasons
* fairly serious error in the two XMLCh* constructor, the fURL member
* was being improperly initialized with the (systemID,publicID) instead
* of (baseId,systemId)
*
* Revision 1.1.1.1 2002/02/01 22:21:50 peiyongz
* sane_include
*
* Revision 1.3 2000/02/06 07:47:46 rahulj
* Year 2K copyright swat.
......@@ -113,7 +118,7 @@ URLInputSource::URLInputSource( const XMLCh* const baseId
, const XMLCh* const systemId
, const XMLCh* const publicId) :
InputSource(0, publicId)
, fURL(systemId, publicId)
, fURL(baseId, systemId)
{
setSystemId(fURL.getURLText());
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment