Re: PATCH for arrayindexoutofbounds exception in latest code - Mailing list pgsql-patches

From Bruce Momjian
Subject Re: PATCH for arrayindexoutofbounds exception in latest code
Date
Msg-id 200101250003.TAA19440@candle.pha.pa.us
Whole thread Raw
In response to PATCH for arrayindexoutofbounds exception in latest code  (Barry Lind <barry@xythos.com>)
List pgsql-patches
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

pgsql-patches by date:

Previous
From: Bruce Momjian
Date:
Subject: Re: Revised Patch for JDBC timestamp problems
Next
From: Bruce Momjian
Date:
Subject: Re: [ODBC] ODBC Patch for OJs/Large Querys & Rows