From 241a9588c6d7d0fcb4c92da40c7141863930083a Mon Sep 17 00:00:00 2001 From: Christopher Ferris Date: Mon, 27 Apr 2015 15:19:41 -0700 Subject: Fix mismatched new[]/delete. Another two cases where a new[] is used but only a delete occurs. Bug: 18202869 Change-Id: If68264807150f3a9783e44ef8823cc366bff8df2 --- runtime/trace.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'runtime/trace.h') diff --git a/runtime/trace.h b/runtime/trace.h index 06824b8..df6d5e7 100644 --- a/runtime/trace.h +++ b/runtime/trace.h @@ -189,7 +189,7 @@ class Trace FINAL : public instrumentation::InstrumentationListener { std::unique_ptr trace_file_; // Buffer to store trace data. - std::unique_ptr buf_; + std::unique_ptr buf_; // Flags enabling extra tracing of things such as alloc counts. const int flags_; -- cgit v1.1