mirror of
https://github.com/postgres/postgres.git
synced 2025-05-05 09:19:17 +03: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
@ -21,7 +21,7 @@ public class BytePoolDim1 {
|
|||||||
/**
|
/**
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
byte binit[][] = new byte[maxsize][0];
|
byte binit[][] = new byte[maxsize+1][0];
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Construct a new pool
|
* Construct a new pool
|
||||||
|
Loading…
x
Reference in New Issue
Block a user