summaryrefslogtreecommitdiffstats
path: root/stream/tvi_v4l.c
diff options
context:
space:
mode:
authorvoroshil <voroshil@b3059339-0415-0410-9bf9-f77b7e298cf2>2007-07-30 17:31:54 +0000
committervoroshil <voroshil@b3059339-0415-0410-9bf9-f77b7e298cf2>2007-07-30 17:31:54 +0000
commitaae0e9dcde30a94424a7dcf5c5f85e4c074c3a0a (patch)
tree945e7c3c0e2f73a51b719e27d366922ceb1cf20b /stream/tvi_v4l.c
parent5fe8918070edf4ee693970e3118f48045414ddfb (diff)
downloadmpv-aae0e9dcde30a94424a7dcf5c5f85e4c074c3a0a.tar.bz2
mpv-aae0e9dcde30a94424a7dcf5c5f85e4c074c3a0a.tar.xz
10l: wrong pointer was initialized (causes crash during startup).
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23945 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'stream/tvi_v4l.c')
-rw-r--r--stream/tvi_v4l.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/stream/tvi_v4l.c b/stream/tvi_v4l.c
index 8a7f19b51f..b27dda0d5d 100644
--- a/stream/tvi_v4l.c
+++ b/stream/tvi_v4l.c
@@ -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);
}