diff options
author | Juergen Keil <jkeil@users.sourceforge.net> | 2002-01-25 14:56:00 +0000 |
---|---|---|
committer | Juergen Keil <jkeil@users.sourceforge.net> | 2002-01-25 14:56:00 +0000 |
commit | b9134403733e0ef79241ae649808a6d7a13905af (patch) | |
tree | b54f0b2dceb7a68b8f60969008affe0d0651c763 | |
parent | 89fce37bbb01db3271978d550d4c03b3aeb85ae6 (diff) | |
download | xine-lib-b9134403733e0ef79241ae649808a6d7a13905af.tar.gz xine-lib-b9134403733e0ef79241ae649808a6d7a13905af.tar.bz2 |
New logo code seems to access NULL img. Trying to fix...
CVS patchset: 1452
CVS date: 2002/01/25 14:56:00
-rw-r--r-- | src/xine-engine/video_out.c | 6 |
1 files 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; } } |