Commit 4e45005f authored by Bruce Momjian's avatar Bruce Momjian

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
parent ba6fda51
......@@ -21,7 +21,7 @@ public class BytePoolDim1 {
/**
*
*/
byte binit[][] = new byte[maxsize][0];
byte binit[][] = new byte[maxsize+1][0];
/**
* Construct a new pool
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment