From 851196b5e70421cd62c16e47ccd3863591ffa8c7 Mon Sep 17 00:00:00 2001 From: Johnny Willemsen Date: Wed, 14 Sep 2016 11:13:08 +0200 Subject: Fixed reported memory leak by Coverity * ACE/tests/Compiler_Features_21_Test.cpp: --- ACE/tests/Compiler_Features_21_Test.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/ACE/tests/Compiler_Features_21_Test.cpp b/ACE/tests/Compiler_Features_21_Test.cpp index 13d3b369614..c8ad796e3a7 100644 --- a/ACE/tests/Compiler_Features_21_Test.cpp +++ b/ACE/tests/Compiler_Features_21_Test.cpp @@ -17,6 +17,7 @@ struct A struct B { B() : b(new A[0]) {} + ~B() { delete [] b; } A *b; }; -- cgit v1.2.1