Skip to content

Commit

Permalink
GP-0: Improving bounds check in DebugDirectory.java (Closes #7271)
Browse files Browse the repository at this point in the history
  • Loading branch information
ryanmkurtz committed Dec 10, 2024
1 parent ed2bc8c commit 97aadfa
Showing 1 changed file with 5 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
*
* http://www.apache.org/licenses/LICENSE-2.0
*
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
Expand Down Expand Up @@ -92,8 +92,9 @@ public class DebugDirectory implements StructConverter, ByteArrayConverter {
return;
}
if (sizeOfData > 0) {
if (!validator.checkPointer(pointerToRawData)) {
Msg.error(this, "Invalid pointerToRawData " + pointerToRawData);
if (!validator.checkPointer(pointerToRawData + sizeOfData - 1)) {
Msg.error(this, "Invalid debug pointerToRawData + sizeOfData: 0x%x"
.formatted(pointerToRawData + sizeOfData - 1));
sizeOfData = 0;
reader.setPointerIndex(oldIndex);
return;
Expand Down

0 comments on commit 97aadfa

Please sign in to comment.