Fix a missing pointer
--HG-- extra : convert_revision : 2056b530d48fd004ab700f09e58f44adae3ea0e9
This commit is contained in:
parent
fdaed2c7ae
commit
467c17fbd9
1 changed files with 1 additions and 1 deletions
2
src/mem/cache/base_cache.cc
vendored
2
src/mem/cache/base_cache.cc
vendored
|
@ -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);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue