vladimir    2002/12/23 13:25:46

  Modified:    java/src/org/apache/xindice/xml/sax SAXEventGenerator.java
  Log:
  Fix a bug (no more info, sorry)
  
  Revision  Changes    Path
  1.17      +2 -2      
xml-xindice/java/src/org/apache/xindice/xml/sax/SAXEventGenerator.java
  
  Index: SAXEventGenerator.java
  ===================================================================
  RCS file: 
/home/cvs/xml-xindice/java/src/org/apache/xindice/xml/sax/SAXEventGenerator.java,v
  retrieving revision 1.16
  retrieving revision 1.17
  diff -u -r1.16 -r1.17
  --- SAXEventGenerator.java    13 Dec 2002 14:27:40 -0000      1.16
  +++ SAXEventGenerator.java    23 Dec 2002 21:25:46 -0000      1.17
  @@ -320,7 +320,7 @@
                  if (nsMapCount >= mappedPrefixes.length) {
   
                     String[] newBuf = new String[mappedPrefixes.length + 
XMLNS_MAP_INCREMENT];
  -                  System.arraycopy(mappedPrefixes, 0, newBuf, 0, 
mappedPrefixes.length);
  +                  System.arraycopy(mappedPrefixes, 0, newBuf, 0, 
newBuf.length);
                     mappedPrefixes = newBuf;
                  }
   
  
  
  

Reply via email to