This patch fixes an arrayindexoutofbounds exception that was just

introduced into the code.  The fix is a fix to
org.postgresql.core.ByteArrayDim1.java.

Barry Lind
REL7_1_STABLE
Bruce Momjian 25 years ago
parent ba6fda5191
commit 4e45005ffb
  1. 2
      src/interfaces/jdbc/org/postgresql/core/BytePoolDim1.java

@ -21,7 +21,7 @@ public class BytePoolDim1 {
/**
*
*/
byte binit[][] = new byte[maxsize][0];
byte binit[][] = new byte[maxsize+1][0];
/**
* Construct a new pool

Loading…
Cancel
Save