PATCH for arrayindexoutofbounds exception in latest code

Поиск
Список
Период
Сортировка
От Barry Lind
Тема PATCH for arrayindexoutofbounds exception in latest code
Дата
Msg-id 3A6F48C6.301FF6A8@xythos.com
обсуждение исходный текст
Ответы Re: PATCH for arrayindexoutofbounds exception in latest code  (Bruce Momjian <pgman@candle.pha.pa.us>)
Список pgsql-patches
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

В списке pgsql-patches по дате отправления:

Предыдущее
От: Bruce Momjian
Дата:
Сообщение: Re: unixODBC again :-(
Следующее
От: Bruce Momjian
Дата:
Сообщение: Re: Revised Patch for JDBC timestamp problems