Move some variable initializations to the beginning of vo_x11_fullscreen().

Fixes the warnings:
libvo/x11_common.c:1344: warning: 'h' may be used uninitialized in this function
libvo/x11_common.c:1344: warning: 'w' may be used uninitialized in this function
libvo/x11_common.c:1344: warning: 'y' may be used uninitialized in this function
libvo/x11_common.c:1344: warning: 'x' may be used uninitialized in this function


git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@29795 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
diego 2009-10-24 12:35:18 +00:00
parent fbf26ecb14
commit 3d264d7b55
1 changed files with 4 additions and 9 deletions

View File

@ -1342,6 +1342,10 @@ int vo_x11_update_geometry(void) {
void vo_x11_fullscreen(void)
{
int x, y, w, h;
x = vo_old_x;
y = vo_old_y;
w = vo_old_width;
h = vo_old_height;
if (WinID >= 0) {
vo_fs = !vo_fs;
@ -1352,15 +1356,6 @@ void vo_x11_fullscreen(void)
if (vo_fs)
{
// fs->win
if ( ! (vo_fs_type & vo_wm_FULLSCREEN) ) // not needed with EWMH fs
{
x = vo_old_x;
y = vo_old_y;
w = vo_old_width;
h = vo_old_height;
}
vo_x11_ewmh_fullscreen(_NET_WM_STATE_REMOVE); // removes fullscreen state if wm supports EWMH
vo_fs = VO_FALSE;
} else