Skip to content

Commit

Permalink
Index out of bounds
Browse files Browse the repository at this point in the history
Signed-off-by: Nadir K Amra <[email protected]>
  • Loading branch information
nadiramra authored and jeber-ibm committed Oct 15, 2024
1 parent c3b079f commit 1996c5c
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -445,7 +445,7 @@ public byte[] refresh(int type, int timeoutInterval) throws RefreshFailedExcepti
parmlist[6] = new ProgramParameter(CharConverter.stringToByteArray(sys, remoteIpAddress));

// Input: Length of remote IP address
parmlist[7] = new ProgramParameter(BinaryConverter.intToByteArray((isRemoteIPNull) ? 0 : parmlist[13].getInputData().length));
parmlist[7] = new ProgramParameter(BinaryConverter.intToByteArray((isRemoteIPNull) ? 0 : parmlist[6].getInputData().length));
}

try {
Expand Down

0 comments on commit 1996c5c

Please sign in to comment.