From c56866d45fca85fd6e7725e9eca1ad562ecf5d6e Mon Sep 17 00:00:00 2001 From: jistone Date: Tue, 25 Sep 2007 17:47:17 +0000 Subject: 2007-09-25 Josh Stone * tapsets.cxx (translator_output::~translator_output): Fix mismatched delete / delete []. --- translate.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'translate.cxx') diff --git a/translate.cxx b/translate.cxx index c60fad97..7ff2bae6 100644 --- a/translate.cxx +++ b/translate.cxx @@ -794,7 +794,7 @@ translator_output::translator_output (const string& filename, size_t bufsize): translator_output::~translator_output () { delete o2; - delete buf; + delete [] buf; } -- cgit