]> git.sesse.net Git - ccbs/commitdiff
Fix a mismatched new[]/delete.
authorSteinar H. Gunderson <sgunderson@bigfoot.com>
Fri, 17 Feb 2012 23:33:15 +0000 (00:33 +0100)
committerSteinar H. Gunderson <sgunderson@bigfoot.com>
Fri, 17 Feb 2012 23:33:15 +0000 (00:33 +0100)
bigscreen/rotatescreen.cpp

index c2285ae787d3beb2dc85d480ed15df37e931eb7c..e7d2bd47793e4c92717becc224e875321c917c2b 100644 (file)
@@ -11,7 +11,7 @@ RotateScreen::RotateScreen()
 
 RotateScreen::~RotateScreen()
 {
-       delete fadefrom_buf;
+       delete[] fadefrom_buf;
 }
 
 bool RotateScreen::check_invalidated()