mem: Fix MemChecker unique_ptr type mismatch
This patch fixes the type of the unique_ptr instances, to ensure that the data that is allocated with new[] is also deleted with delete[]. The issue was highlighted by ASAN. Change-Id: I2c5510424959d862a9954d83e728d901bb18d309 Reviewed-by: Nikos Nikoleris <nikos.nikoleris@arm.com> Reviewed-by: Curtis Dunham <curtis.dunham@arm.com> Reviewed-by: Stephan Diestelhorst <stephan.diestelhorst@arm.com>
This commit is contained in:
parent
7dc5034ff2
commit
90de9be2ef
1 changed files with 2 additions and 2 deletions
|
@ -157,7 +157,7 @@ MemCheckerMonitor::recvTimingReq(PacketPtr pkt)
|
|||
unsigned size = pkt->getSize();
|
||||
Addr addr = pkt->getAddr();
|
||||
bool expects_response = pkt->needsResponse() && !pkt->cacheResponding();
|
||||
std::unique_ptr<uint8_t> pkt_data;
|
||||
std::unique_ptr<uint8_t[]> pkt_data;
|
||||
MemCheckerMonitorSenderState* state = NULL;
|
||||
|
||||
if (expects_response && is_write) {
|
||||
|
@ -246,7 +246,7 @@ MemCheckerMonitor::recvTimingResp(PacketPtr pkt)
|
|||
bool is_failed_LLSC = pkt->isLLSC() && pkt->req->getExtraData() == 0;
|
||||
unsigned size = pkt->getSize();
|
||||
Addr addr = pkt->getAddr();
|
||||
std::unique_ptr<uint8_t> pkt_data;
|
||||
std::unique_ptr<uint8_t[]> pkt_data;
|
||||
MemCheckerMonitorSenderState* received_state = NULL;
|
||||
|
||||
if (is_read) {
|
||||
|
|
Loading…
Reference in a new issue