Skip to content

Commit

Permalink
Fix NullPointerException in OContainerRepair
Browse files Browse the repository at this point in the history
  • Loading branch information
14mRh4X0r committed Feb 5, 2013
1 parent 91806c3 commit 11c8655
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/OContainerRepair.java
Original file line number Diff line number Diff line change
Expand Up @@ -306,7 +306,7 @@ public void d() {
}

//update the tool name
if (!this.m.equals(hook.toolName) && this.a(2).d()) {
if (this.m != null && !this.m.equals(hook.toolName) && this.a(2).d()) {
this.m = hook.toolName;
this.a(2).c().c(this.m);
}
Expand Down

0 comments on commit 11c8655

Please sign in to comment.