Skip to content
This repository has been archived by the owner on Jun 3, 2021. It is now read-only.

Commit

Permalink
Do Not abort when Ipc receive end type (#2814)
Browse files Browse the repository at this point in the history
  • Loading branch information
Darin726 authored and jianhan-he committed Aug 12, 2019
1 parent 862a64c commit ff2c079
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion weex_core/Source/third_party/IPC/IPCCommunicator.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,9 @@ void BufferAssembler::readData(const char*& blob)
break;
case IPCType::END:
default:
IPC_UNREACHABLE();
IPC_LOGE("IPC TO BE END");
m_datas.emplace_back();
break;
}
}
}
Expand Down

0 comments on commit ff2c079

Please sign in to comment.