diff --git a/qa/tools/pns/pns_log_player.cpp b/qa/tools/pns/pns_log_player.cpp index 4442849006..d3ded7b838 100644 --- a/qa/tools/pns/pns_log_player.cpp +++ b/qa/tools/pns/pns_log_player.cpp @@ -73,7 +73,10 @@ const PNS_LOG_FILE::COMMIT_STATE PNS_LOG_PLAYER::GetRouterUpdatedItems() //printf("a %d r %d\n", added.size(), removed.size() ); for( auto item : removed ) { - state.m_removedIds.insert( item->Parent()->m_Uuid ); + if( item->Parent() ) + { + state.m_removedIds.insert( item->Parent()->m_Uuid ); + } } for( auto item : added )