You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@xerces.apache.org by ja...@apache.org on 2002/04/25 02:12:34 UTC

cvs commit: xml-xerces/c/src/xercesc/framework URLInputSource.cpp

jasons      02/04/24 17:12:34

  Modified:    c/src/xercesc/framework URLInputSource.cpp
  Log:
  fairly serious error in the two XMLCh* constructor, the fURL member
  was being improperly initialized with the (systemID,publicID) instead
  of (baseId,systemId)
  
  Revision  Changes    Path
  1.2       +4 -1      xml-xerces/c/src/xercesc/framework/URLInputSource.cpp
  
  Index: URLInputSource.cpp
  ===================================================================
  RCS file: /home/cvs/xml-xerces/c/src/xercesc/framework/URLInputSource.cpp,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- URLInputSource.cpp	1 Feb 2002 22:21:50 -0000	1.1
  +++ URLInputSource.cpp	25 Apr 2002 00:12:34 -0000	1.2
  @@ -56,8 +56,13 @@
   
   /**
    * $Log: URLInputSource.cpp,v $
  - * 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 @@
                                   , const XMLCh* const    systemId
                                   , const XMLCh* const    publicId) :
       InputSource(0, publicId)
  -    , fURL(systemId, publicId)
  +    , fURL(baseId, systemId)
   {
       setSystemId(fURL.getURLText());
   }
  
  
  

---------------------------------------------------------------------
To unsubscribe, e-mail: xerces-cvs-unsubscribe@xml.apache.org
For additional commands, e-mail: xerces-cvs-help@xml.apache.org