We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent aaae641 commit 1d6c29cCopy full SHA for 1d6c29c
src/main/java/com/code_intelligence/jazzer/agent/RuntimeInstrumentor.kt
@@ -181,7 +181,10 @@ class RuntimeInstrumentor(
181
.acceptClasses(className)
182
.scan()
183
.use {
184
- it.getClassInfo(className).resource.load()
+ it.getClassInfo(className)?.resource?.load() ?: run {
185
+ Log.warn("Failed to load bytecode of class $className")
186
+ return null
187
+ }
188
}
189
val (instrumentedBytecode, duration) = measureTimedValue {
190
try {
0 commit comments