Hi Neil,
Your patch looks right I will put into CVS and run some regression
tests on it.

Thanks for your contribution,

                Jeff Rodriguez



From: Neil de Hoog <[EMAIL PROTECTED]>
Reply-To: [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Subject: fix for error while loading docbook dtd
Date: Mon, 09 Oct 2000 21:51:06 +0200

In DefaultEntityHandler.java you will find

starting at 1219 :
            newIntArray = new int[chunk * 2][];
            System.arraycopy(fSystemId, 0, newIntArray, 0, chunk);
            newIntArray = new int[chunk * 2][];
            System.arraycopy(fBaseSystemId, 0, newIntArray, 0, chunk);
            fBaseSystemId = newIntArray;
->          fSystemId = newIntArray;

I think it should be:
            newIntArray = new int[chunk * 2][];
            System.arraycopy(fSystemId, 0, newIntArray, 0, chunk);
->          fSystemId = newIntArray;
            newIntArray = new int[chunk * 2][];
            System.arraycopy(fBaseSystemId, 0, newIntArray, 0, chunk);
            fBaseSystemId = newIntArray;

Please don't make me cry againg and accept my fix this time, please,

Neil
Lunatech Research
[EMAIL PROTECTED]
[EMAIL PROTECTED]

_________________________________________________________________________ Get Your Private, Free E-mail from MSN Hotmail at http://www.hotmail.com.

Share information about yourself, create your own public profile at http://profiles.msn.com.



Reply via email to