1
mirror of https://github.com/mpv-player/mpv synced 2025-01-16 22:37:28 +01:00

10l: wrong pointer was initialized (causes crash during startup).

git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23945 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
voroshil 2007-07-30 17:31:54 +00:00
parent 5fe8918070
commit aae0e9dcde
2 changed files with 2 additions and 2 deletions

View File

@ -211,7 +211,7 @@ static tvi_handle_t *tvi_init_bsdbt848(tv_param_t* tv_param)
else
priv->dspdev = strdup(tv_param->adevice);
tvh->tv_param=tv_param;
priv->tv_param=tv_param;
return tvh;
}

View File

@ -300,7 +300,7 @@ static tvi_handle_t *tvi_init_v4l(tv_param_t* tv_param)
return(NULL);
}
h->tv_param=tv_param;
priv->tv_param=tv_param;
return(h);
}