From: Andreas Hansson Date: Tue, 8 Mar 2016 22:50:58 +0000 (-0500) Subject: syscall_emul: Fix erroneous use of delete X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=fcbc208bb3528b632d09912e447c20c5d193c00a;p=gem5.git syscall_emul: Fix erroneous use of delete clang correctly points out an erroneous use of delete. --- diff --git a/src/sim/syscall_emul.hh b/src/sim/syscall_emul.hh index bff7b79a4..2aa742615 100644 --- a/src/sim/syscall_emul.hh +++ b/src/sim/syscall_emul.hh @@ -333,7 +333,7 @@ futexFunc(SyscallDesc *desc, int callnum, LiveProcess *process, uint8_t *buf = new uint8_t[sizeof(int)]; tc->getMemProxy().readBlob((Addr)uaddr, buf, (int)sizeof(int)); int mem_val = *((int *)buf); - delete buf; + delete[] buf; if (val != mem_val) { DPRINTF(SyscallVerbose, "sys_futex: FUTEX_WAKE, read: %d, "