diff options
author | phintuka <phintuka> | 2006-08-15 16:39:36 +0000 |
---|---|---|
committer | phintuka <phintuka> | 2006-08-15 16:39:36 +0000 |
commit | 1468b60d3651283ca45f9eda73e23138c4fa3fd6 (patch) | |
tree | d47d0cba6f8c544395d15e487be3811b53f0f789 | |
parent | 04541ccfa609ea0ca91902729bc58c4cc819db48 (diff) | |
download | xineliboutput-1468b60d3651283ca45f9eda73e23138c4fa3fd6.tar.gz xineliboutput-1468b60d3651283ca45f9eda73e23138c4fa3fd6.tar.bz2 |
delete --> delete[] (Thanks to Tobias Grimm)
-rw-r--r-- | frontend.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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; } |