Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/GraphCtrl/GraphElement/GElementRepository.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ CStatus GElementRepository::init() {
* 2. 查验配置信息是否正确
* 3. 记录异步节点的信息
*/
CGRAPH_ASSERT_NOT_NULL(element)
CGRAPH_ASSERT_NOT_NULL(element, element->thread_pool_)
status = element->checkSuitable();
CGRAPH_FUNCTION_CHECK_STATUS
element->updateAspectInfo();
Expand Down
1 change: 0 additions & 1 deletion src/GraphCtrl/GraphElement/GGroup/GMutable/GMutable.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,6 @@ GMutable::~GMutable() {
CStatus GMutable::init() {
CGRAPH_FUNCTION_BEGIN
CGRAPH_ASSERT_NOT_NULL(manager_)
manager_->setThreadPool(thread_pool_);
status = manager_->initEngine();
CGRAPH_FUNCTION_CHECK_STATUS

Expand Down
Loading