mirror of
https://github.com/NationalSecurityAgency/ghidra.git
synced 2025-10-04 10:19:23 +02:00
GP-2974: Fixing warnings
This commit is contained in:
parent
113156a19f
commit
7fa3389119
662 changed files with 2198 additions and 2216 deletions
|
@ -93,7 +93,7 @@ public class ApplyClassFunctionSignatureUpdatesScript extends GhidraScript {
|
|||
// get one that has a class vftableStructure applied there
|
||||
Address vftableWithAppliedStructure = null;
|
||||
for (Address vftableAddress : vftablesContainingFunction) {
|
||||
monitor.checkCanceled();
|
||||
monitor.checkCancelled();
|
||||
|
||||
Data dataAt = getDataAt(vftableAddress);
|
||||
if (dataAt == null) {
|
||||
|
@ -134,7 +134,7 @@ public class ApplyClassFunctionSignatureUpdatesScript extends GhidraScript {
|
|||
println();
|
||||
println("Updated structures:");
|
||||
for (Structure structure : structuresOnList) {
|
||||
monitor.checkCanceled();
|
||||
monitor.checkCancelled();
|
||||
println(structure.getPathName());
|
||||
}
|
||||
}
|
||||
|
@ -143,7 +143,7 @@ public class ApplyClassFunctionSignatureUpdatesScript extends GhidraScript {
|
|||
println();
|
||||
println("Updated function definition:");
|
||||
for (FunctionDefinition functionDef : functionDefinitionsOnList) {
|
||||
monitor.checkCanceled();
|
||||
monitor.checkCancelled();
|
||||
println(functionDef.getPathName());
|
||||
}
|
||||
}
|
||||
|
@ -152,7 +152,7 @@ public class ApplyClassFunctionSignatureUpdatesScript extends GhidraScript {
|
|||
println();
|
||||
println("Updated functions:");
|
||||
for (Function functionOnList : functionsOnList) {
|
||||
monitor.checkCanceled();
|
||||
monitor.checkCancelled();
|
||||
println(functionOnList.getEntryPoint().toString());
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue