summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorphintuka <phintuka>2006-08-15 16:39:36 +0000
committerphintuka <phintuka>2006-08-15 16:39:36 +0000
commit1468b60d3651283ca45f9eda73e23138c4fa3fd6 (patch)
treed47d0cba6f8c544395d15e487be3811b53f0f789
parent04541ccfa609ea0ca91902729bc58c4cc819db48 (diff)
downloadxineliboutput-1468b60d3651283ca45f9eda73e23138c4fa3fd6.tar.gz
xineliboutput-1468b60d3651283ca45f9eda73e23138c4fa3fd6.tar.bz2
delete --> delete[] (Thanks to Tobias Grimm)
-rw-r--r--frontend.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/frontend.c b/frontend.c
index e425fe90..e97de243 100644
--- a/frontend.c
+++ b/frontend.c
@@ -4,7 +4,7 @@
* See the main source file 'xineliboutput.c' for copyright information and
* how to reach the author.
*
- * $Id: frontend.c,v 1.8 2006-07-21 22:55:01 phintuka Exp $
+ * $Id: frontend.c,v 1.9 2006-08-15 16:39:36 phintuka Exp $
*
*/
@@ -409,7 +409,7 @@ bool cXinelibThread::Play_Mpeg2_ES(const uchar *data, int len, int streamID)
Play_PES(seqend, 13);
}
- delete frame;
+ delete[] frame;
return true;
}