File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
XEngine_Source/MQCore_MemoryCache Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -301,7 +301,7 @@ XHTHREAD CALLBACK CMemoryCache_DBData::DBModule_MQUser_TimeThread(XPVOID lParam)
301301 {
302302 stl_ListDelete.push_back (stl_MapIterator->second .st_DBMessageInfo );
303303 }
304- else if (pClass_This->m_nTimeCount > 0 && ((nTimeEnd - stl_MapIterator->second .nTimeLast ) > pClass_This->m_nTimeCount ))
304+ else if (pClass_This->m_nTimeCount > 0 && ((nTimeEnd - stl_MapIterator->second .nTimeStart ) > pClass_This->m_nTimeCount ))
305305 {
306306 stl_ListDelete.push_back (stl_MapIterator->second .st_DBMessageInfo );
307307 }
Original file line number Diff line number Diff line change @@ -229,7 +229,7 @@ XHTHREAD CALLBACK CMemoryCache_DBUser::DBModule_MQUser_TimeThread(XPVOID lParam)
229229 {
230230 stl_ListDelete.push_back (stl_MapIterator->second .st_DBUserInfo );
231231 }
232- else if (pClass_This->m_nTimeCount > 0 && ((nTimeEnd - stl_MapIterator->second .nTimeLast ) > pClass_This->m_nTimeCount ))
232+ else if (pClass_This->m_nTimeCount > 0 && ((nTimeEnd - stl_MapIterator->second .nTimeStart ) > pClass_This->m_nTimeCount ))
233233 {
234234 stl_ListDelete.push_back (stl_MapIterator->second .st_DBUserInfo );
235235 }
You can’t perform that action at this time.
0 commit comments