BBLL
BBLL copied to clipboard
首页的视频发布时间有问题,全部都显示为今天
My c++ is very rusty, but I see in the OCIOIPNode::evaluate() method that the QMutexLocker objects are instantiated anonymously like this:
QMutexLocker( &this->m_lock );
Googling "anonymous objects in c++" leads me to believe that this code is not working as expected and should instead be something like:
QMutexLocker mylock( &this->m_lock );