diff options
author | phintuka <phintuka> | 2008-09-26 13:33:31 +0000 |
---|---|---|
committer | phintuka <phintuka> | 2008-09-26 13:33:31 +0000 |
commit | aa6ec4a0be294f3508a5e5ed7bef516c03132c5f (patch) | |
tree | a70f396c7711c81faaaeca822221544d456f4ad8 /xine/post_util.h | |
parent | f676de20d91ba1cc58b8eaaf2f6b931851c2063a (diff) | |
download | xineliboutput-unlabeled-1.3.2.tar.gz xineliboutput-unlabeled-1.3.2.tar.bz2 |
1.0.2: Backported bugfixes from CVS trunkunlabeled-1.3.2
- xine-lib 1.2 updates
Diffstat (limited to 'xine/post_util.h')
-rw-r--r-- | xine/post_util.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/xine/post_util.h b/xine/post_util.h index 06154ed7..a5d57b8d 100644 --- a/xine/post_util.h +++ b/xine/post_util.h @@ -4,7 +4,7 @@ * See the main source file 'xineliboutput.c' for copyright information and * how to reach the author. * - * $Id: post_util.h,v 1.3 2008-02-28 06:10:54 phintuka Exp $ + * $Id: post_util.h,v 1.3.2.1 2008-09-26 13:33:31 phintuka Exp $ * */ @@ -53,7 +53,7 @@ static void draw_internal(vo_frame_t *frame, vo_frame_t *new_frame); static void *init_plugin(xine_t *xine, void *data) { - post_class_t *class = (post_class_t *)malloc(sizeof(post_class_t)); + post_class_t *class = calloc(1, sizeof(post_class_t)); if (!class) return NULL; |