From b9134403733e0ef79241ae649808a6d7a13905af Mon Sep 17 00:00:00 2001 From: Juergen Keil Date: Fri, 25 Jan 2002 14:56:00 +0000 Subject: New logo code seems to access NULL img. Trying to fix... CVS patchset: 1452 CVS date: 2002/01/25 14:56:00 --- src/xine-engine/video_out.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/xine-engine/video_out.c b/src/xine-engine/video_out.c index 6c81da8cf..ad9cac67b 100644 --- a/src/xine-engine/video_out.c +++ b/src/xine-engine/video_out.c @@ -17,7 +17,7 @@ * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA * - * $Id: video_out.c,v 1.67 2002/01/24 23:09:54 guenter Exp $ + * $Id: video_out.c,v 1.68 2002/01/25 14:56:00 jkeil Exp $ * */ @@ -426,10 +426,10 @@ static void *video_out_loop (void *this_gen) { int stride = this->logo_w; uint8_t* src[3]; - src[0] = img->base[0]; + src[0] = img_backup->base[0]; while ((height -= 16) >= 0) { - img->copy(img, src); + img_backup->copy(img_backup, src); src[0] += 32 * stride; } } -- cgit v1.2.3