projects
/
vompclient-marten.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
8ae2b8f
)
Fix memory leak
author
Chris Tallon
<chris@vomp.tv>
Tue, 13 Feb 2007 20:01:55 +0000
(20:01 +0000)
committer
Chris Tallon
<chris@vomp.tv>
Tue, 13 Feb 2007 20:01:55 +0000
(20:01 +0000)
vvideorec.cc
patch
|
blob
|
history
diff --git
a/vvideorec.cc
b/vvideorec.cc
index fdd81d7c5857918926009945692ae36696ecabf6..9ce4ca7387e2a2903e8ccb98219c409e7dda5f6c 100644
(file)
--- a/
vvideorec.cc
+++ b/
vvideorec.cc
@@
-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);
}