From 3b02210713a3b8f46750638003784115a738ec78 Mon Sep 17 00:00:00 2001 From: Joel Hestness Date: Sun, 7 Apr 2013 20:31:15 -0500 Subject: Ruby System, Cache Recorder: Use delete [] for trace vars The cache trace variables are array allocated uint8_t* in the RubySystem and the Ruby CacheRecorder, but the code used delete to free the memory, resulting in Valgrind memory errors. Change these deletes to delete [] to get rid of the errors. --- src/mem/ruby/system/System.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/mem/ruby/system') diff --git a/src/mem/ruby/system/System.cc b/src/mem/ruby/system/System.cc index 0e52df2ec..617788b99 100644 --- a/src/mem/ruby/system/System.cc +++ b/src/mem/ruby/system/System.cc @@ -331,7 +331,7 @@ RubySystem::unserialize(Checkpoint *cp, const string §ion) memory_trace_size); m_mem_vec_ptr->populatePages(uncompressed_trace); - delete uncompressed_trace; + delete [] uncompressed_trace; uncompressed_trace = NULL; } -- cgit v1.2.3