Commit 6e8608f2 authored by Gildas Bazin's avatar Gildas Bazin

* modules/access/dshow/filter.cpp: fixed uninitialized variable.

parent 795e043c
......@@ -314,6 +314,7 @@ CapturePin::CapturePin( vlc_object_t *_p_input, access_sys_t *_p_sys,
cx_media_type.majortype = mt[0].majortype;
cx_media_type.subtype = GUID_NULL;
cx_media_type.pbFormat = NULL;
cx_media_type.cbFormat = 0;
cx_media_type.pUnk = NULL;
}
......
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