dbertoni    00/12/01 13:03:41

  Modified:    c/src/XSLT XSLTEngineImpl.cpp
  Log:
  Check for null systemID before assigning.
  
  Revision  Changes    Path
  1.73      +4 -1      xml-xalan/c/src/XSLT/XSLTEngineImpl.cpp
  
  Index: XSLTEngineImpl.cpp
  ===================================================================
  RCS file: /home/cvs/xml-xalan/c/src/XSLT/XSLTEngineImpl.cpp,v
  retrieving revision 1.72
  retrieving revision 1.73
  diff -u -r1.72 -r1.73
  --- XSLTEngineImpl.cpp        2000/11/27 21:45:06     1.72
  +++ XSLTEngineImpl.cpp        2000/12/01 21:03:40     1.73
  @@ -488,7 +488,10 @@
                        }
                        else
                        {
  -                             xslIdentifier = systemID;
  +                             if (systemID != 0)
  +                             {
  +                                     xslIdentifier = systemID;
  +                             }
   
                                diag(XALAN_STATIC_UCODE_STRING("========= 
Parsing ") + xslIdentifier + XALAN_STATIC_UCODE_STRING(" =========="));
                                pushTime(&xslIdentifier);
  
  
  

Reply via email to