Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Evgeny Mandrikov
asm
Commits
ce1f6198
Commit
ce1f6198
authored
Feb 22, 2019
by
Evgeny Mandrikov
Browse files
fix NPE in CheckMethodAdapter
parent
9038c45c
Pipeline
#4435
passed with stage
in 11 minutes and 11 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
asm-util/src/main/java/org/objectweb/asm/util/CheckMethodAdapter.java
View file @
ce1f6198
...
...
@@ -457,7 +457,9 @@ public class CheckMethodAdapter extends MethodVisitor {
}
catch
(
AnalyzerException
e
)
{
throwError
(
analyzer
,
e
);
}
accept
(
methodVisitor
);
if
(
methodVisitor
!=
null
)
{
accept
(
methodVisitor
);
}
}
private
void
throwError
(
final
Analyzer
<
BasicValue
>
analyzer
,
final
Exception
e
)
{
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment