Fix a missing pointer

--HG--
extra : convert_revision : 2056b530d48fd004ab700f09e58f44adae3ea0e9
This commit is contained in:
Ron Dreslinski 2006-10-07 12:55:37 -04:00
parent fdaed2c7ae
commit 467c17fbd9

View file

@ -211,7 +211,7 @@ BaseCache::CacheEvent::process()
//Know the packet to send
pkt->result = Packet::Success;
pkt->makeTimingResponse();
if (!drainList.empty()) {
if (!cachePort->drainList.empty()) {
//Already blocked waiting for bus, just append
cachePort->drainList.push_back(pkt);
}