Skip to content

Commit

Permalink
增加消息的非空判断
Browse files Browse the repository at this point in the history
  • Loading branch information
董继菲 committed Nov 13, 2015
1 parent 2a52c66 commit 491212c
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions Engine/src/org/zywx/wbpalmstar/engine/universalex/c.java
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@ public c(Looper loop) {
}

public void handleMessage(Message msg) {
if (msg == null || msg.obj == null) return;
EUExBase base = (EUExBase) msg.obj;
base.onHandleMessage(msg);
}
Expand Down

0 comments on commit 491212c

Please sign in to comment.