You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@xerces.apache.org by an...@locus.apache.org on 2000/06/06 21:16:17 UTC

cvs commit: xml-xerces/c/src/util XMLURL.cpp

andyh       00/06/06 12:16:17

  Modified:    c/src/util XMLURL.cpp
  Log:
  Fix no-return-value-from-fuction problem in XMLURL.cpp
  
  Revision  Changes    Path
  1.14      +2 -1      xml-xerces/c/src/util/XMLURL.cpp
  
  Index: XMLURL.cpp
  ===================================================================
  RCS file: /home/cvs/xml-xerces/c/src/util/XMLURL.cpp,v
  retrieving revision 1.13
  retrieving revision 1.14
  diff -u -r1.13 -r1.14
  --- XMLURL.cpp	2000/06/02 00:21:38	1.13
  +++ XMLURL.cpp	2000/06/06 19:16:16	1.14
  @@ -55,7 +55,7 @@
    */
   
   /*
  - * $Id: XMLURL.cpp,v 1.13 2000/06/02 00:21:38 aruna1 Exp $
  + * $Id: XMLURL.cpp,v 1.14 2000/06/06 19:16:16 andyh Exp $
    */
   
   
  @@ -776,6 +776,7 @@
       if (fFragment || !baseURL.fFragment)
           return true;
       fFragment = XMLString::replicate(baseURL.fFragment);
  +    return true;
   }