mirror of
https://github.com/postgres/postgres.git
synced 2026-02-27 20:00:50 -05:00
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
This commit is contained in:
parent
ba6fda5191
commit
4e45005ffb
1 changed files with 1 additions and 1 deletions
|
|
@ -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…
Reference in a new issue