Commit f1a078a2 authored by Olivier Teulière's avatar Olivier Teulière

- fixed a vicious bug

parent fffe5e1c
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
* fb.c : framebuffer plugin for vlc * fb.c : framebuffer plugin for vlc
***************************************************************************** *****************************************************************************
* Copyright (C) 2000, 2001 VideoLAN * Copyright (C) 2000, 2001 VideoLAN
* $Id: fb.c,v 1.1 2002/08/13 11:59:36 sam Exp $ * $Id: fb.c,v 1.2 2003/02/15 04:43:19 ipkiss Exp $
* *
* Authors: Samuel Hocevar <sam@zoy.org> * Authors: Samuel Hocevar <sam@zoy.org>
* *
...@@ -616,7 +616,7 @@ static void CloseDisplay( vout_thread_t *p_vout ) ...@@ -616,7 +616,7 @@ static void CloseDisplay( vout_thread_t *p_vout )
memset( p_vout->p_sys->p_video, 0, p_vout->p_sys->i_page_size ); memset( p_vout->p_sys->p_video, 0, p_vout->p_sys->i_page_size );
/* Restore palette */ /* Restore palette */
if( p_vout->p_sys->var_info.bits_per_pixel == 8 ); if( p_vout->p_sys->var_info.bits_per_pixel == 8 )
{ {
ioctl( p_vout->p_sys->i_fd, ioctl( p_vout->p_sys->i_fd,
FBIOPUTCMAP, &p_vout->p_sys->fb_cmap ); FBIOPUTCMAP, &p_vout->p_sys->fb_cmap );
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment