Fix memory leak
authorChris Tallon <chris@vomp.tv>
Tue, 13 Feb 2007 20:01:55 +0000 (20:01 +0000)
committerChris Tallon <chris@vomp.tv>
Tue, 13 Feb 2007 20:01:55 +0000 (20:01 +0000)
vvideorec.cc

index fdd81d7c5857918926009945692ae36696ecabf6..9ce4ca7387e2a2903e8ccb98219c409e7dda5f6c 100644 (file)
@@ -615,7 +615,7 @@ void VVideoRec::doBar(int action)
     UCHAR scanrate = player->getIScanRate();
     if (scanrate >= 2)
     {
-      char* text = new char[5];
+      char text[5];
       SNPRINTF(text, 5, "%ux", scanrate);
       drawText(text, barRegion.x + 102, barRegion.y + 12, Colour::LIGHTTEXT);
     }