Skip to content

Commit

Permalink
Merge pull request #364 from smartdevicelink/bugfix/issue_363
Browse files Browse the repository at this point in the history
Fix NPE crash in TransportBroker
  • Loading branch information
joeygrover authored Nov 14, 2016
2 parents 410d2c0 + c02c209 commit a1c73c3
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -139,6 +139,7 @@ public void handleMessage(Message msg) {
TransportBroker broker = provider.get();
if(broker == null){
Log.e(TAG, "Broker object null, unable to process message");
return;
}
Bundle bundle = msg.getData();

Expand Down

0 comments on commit a1c73c3

Please sign in to comment.