Thread: PATCH for arrayindexoutofbounds exception in latest code

PATCH for arrayindexoutofbounds exception in latest code

From
Barry Lind
Date:
This patch fixes an arrayindexoutofbounds exception that was just
introduced into the code.  The fix is a fix to
org.postgresql.core.ByteArrayDim1.java.*** src/interfaces/jdbc/org/postgresql/core/BytePoolDim1.java.orig    Wed Jan 24
13:04:022001 
--- src/interfaces/jdbc/org/postgresql/core/BytePoolDim1.java    Wed Jan 24 13:02:09 2001
***************
*** 21,27 ****
      /**
       *
       */
!     byte binit[][] = new byte[maxsize][0];

      /**
       * Construct a new pool
--- 21,27 ----
      /**
       *
       */
!     byte binit[][] = new byte[maxsize+1][0];

      /**
       * Construct a new pool

Re: PATCH for arrayindexoutofbounds exception in latest code

From
Bruce Momjian
Date:
Thanks. Applied.

---------------------------------------------------------------------------



This patch fixes an arrayindexoutofbounds exception that was just
introduced into the code.  The fix is a fix to
org.postgresql.core.ByteArrayDim1.java.

*** src/interfaces/jdbc/org/postgresql/core/BytePoolDim1.java.orig    Wed Jan 24 13:04:02 2001
--- src/interfaces/jdbc/org/postgresql/core/BytePoolDim1.java    Wed Jan 24 13:02:09 2001
***************
*** 21,27 ****
      /**
       *
       */
!     byte binit[][] = new byte[maxsize][0];

      /**
       * Construct a new pool
--- 21,27 ----
      /**
       *
       */
!     byte binit[][] = new byte[maxsize+1][0];

      /**
       * Construct a new pool


--
  Bruce Momjian                        |  http://candle.pha.pa.us
  pgman@candle.pha.pa.us               |  (610) 853-3000
  +  If your life is a hard drive,     |  830 Blythe Avenue
  +  Christ can be your backup.        |  Drexel Hill, Pennsylvania 19026