From e919c30db9bc56b9b56668892ec3247696095928 Mon Sep 17 00:00:00 2001 From: "Steinar H. Gunderson" Date: Sat, 18 Feb 2012 00:33:15 +0100 Subject: [PATCH] Fix a mismatched new[]/delete. --- bigscreen/rotatescreen.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bigscreen/rotatescreen.cpp b/bigscreen/rotatescreen.cpp index c2285ae..e7d2bd4 100644 --- a/bigscreen/rotatescreen.cpp +++ b/bigscreen/rotatescreen.cpp @@ -11,7 +11,7 @@ RotateScreen::RotateScreen() RotateScreen::~RotateScreen() { - delete fadefrom_buf; + delete[] fadefrom_buf; } bool RotateScreen::check_invalidated() -- 2.39.2