From 606022ce80723be1c8660c52ab4953ba44cc239b Mon Sep 17 00:00:00 2001 From: Darren Salt Date: Sun, 6 Jul 2008 23:41:16 +0100 Subject: Fix a stupid bug in post-plugin initialisation. --- src/xine-engine/post.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/xine-engine/post.c b/src/xine-engine/post.c index af791c1f7..aa182d627 100644 --- a/src/xine-engine/post.c +++ b/src/xine-engine/post.c @@ -33,7 +33,7 @@ void _x_post_init(post_plugin_t *post, int num_audio_inputs, int num_video_input post->input = xine_list_new(); post->output = xine_list_new(); post->xine_post.audio_input = calloc(num_audio_inputs + 1, sizeof(xine_audio_port_t *)); - post->xine_post.audio_input = calloc(num_video_inputs + 1, sizeof(xine_video_port_t *)); + post->xine_post.video_input = calloc(num_video_inputs + 1, sizeof(xine_video_port_t *)); } -- cgit v1.2.3