diff options
author | František Dvořák <valtri@civ.zcu.cz> | 2008-11-20 20:39:50 +0100 |
---|---|---|
committer | František Dvořák <valtri@civ.zcu.cz> | 2008-11-20 20:39:50 +0100 |
commit | 2ba1e128cbb791cfdb2829895a854bb664018912 (patch) | |
tree | d4fb416b269a44ddfddafaa45c50c9d0ecaf6bef /src/video_out/video_out_raw.c | |
parent | 8ddba5b2d16ccf1505eb332717b02f5c5793802f (diff) | |
download | xine-lib-2ba1e128cbb791cfdb2829895a854bb664018912.tar.gz xine-lib-2ba1e128cbb791cfdb2829895a854bb664018912.tar.bz2 |
Fix using of the pointers, leak fixes in configfile.
Diffstat (limited to 'src/video_out/video_out_raw.c')
-rw-r--r-- | src/video_out/video_out_raw.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/video_out/video_out_raw.c b/src/video_out/video_out_raw.c index 0d4bf445a..99e2c0004 100644 --- a/src/video_out/video_out_raw.c +++ b/src/video_out/video_out_raw.c @@ -1,5 +1,5 @@ /* - * Copyright (C) 2007 the xine project + * Copyright (C) 2007-2008 the xine project * * This file is part of xine, a free video player. * @@ -212,7 +212,7 @@ static void raw_overlay_end (vo_driver_t *this_gen, vo_frame_t *vo_img) if ( !this->ovl_changed ) return; - this->raw_overlay_cb( this->user_data, this->ovl_changed-1, &this->overlays ); + this->raw_overlay_cb( this->user_data, this->ovl_changed-1, this->overlays ); this->ovl_changed = 0; } |