Skip to content

Commit

Permalink
同步文件,一一比对
Browse files Browse the repository at this point in the history
  • Loading branch information
tanbin committed Apr 13, 2018
1 parent 164d678 commit d429643
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
1 change: 0 additions & 1 deletion src_code/skynet_harbor.c
Original file line number Diff line number Diff line change
Expand Up @@ -543,7 +543,6 @@ _remote_send() {
_goback:
if (msg.destination == SKYNET_SYSTEM_NAME) { // skynet_harbor_register
// register name
const char * name = msg.data;
char * name = msg.message.data;

if (msg.message.source) { // 和 master 通信
Expand Down
2 changes: 1 addition & 1 deletion src_code/skynet_server.c
Original file line number Diff line number Diff line change
Expand Up @@ -183,7 +183,7 @@ skynet_context_message_dispatch(void) {
free(msg.data);
skynet_error(NULL, "Drop message from %u to %u without callback , size = %d",msg.source, handle, (int)msg.sz);
} else { // 处理此消息
dispatch_message(ctx, &msg);
_dispatch_message(ctx, &msg);
}

skynet_context_release(ctx);
Expand Down

0 comments on commit d429643

Please sign in to comment.