Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[ELY-731] Coverity static analysis: Missing parent calls in Elytron #557

Merged
merged 1 commit into from Nov 16, 2016
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
Expand Up @@ -48,7 +48,7 @@ public boolean matches(final URI uri, final String abstractType, final String ab
} else {
name = uri.getSchemeSpecificPart();
}
return name.equals(this.name);
return name.equals(this.name) && super.matches(uri, abstractType, abstractTypeAuthority, purpose);
}

MatchRule reparent(final MatchRule newParent) {
Expand Down
Expand Up @@ -50,7 +50,7 @@ public SaslClient createSaslClient(final String[] mechanisms, final String autho
return saslClient == null ? null : new AbstractDelegatingSaslClient(saslClient) {
public void dispose() throws SaslException {
try {
delegate.dispose();
super.dispose();
} finally {
try {
cbh.handle(new Callback[] { SecurityLayerDisposedCallback.getInstance() });
Expand Down
Expand Up @@ -50,7 +50,7 @@ public SaslServer createSaslServer(final String mechanism, final String protocol
return saslServer == null ? null : new AbstractDelegatingSaslServer(saslServer) {
public void dispose() throws SaslException {
try {
delegate.dispose();
super.dispose();
} finally {
try {
cbh.handle(new Callback[] { SecurityLayerDisposedCallback.getInstance() });
Expand Down