Commit ff31e132 authored by Brendan Shanks's avatar Brendan Shanks Committed by Alexandre Julliard

avicap32: Fail gracefully if V4L is unavailable.

parent aa0186be
...@@ -125,7 +125,7 @@ BOOL VFWAPI capGetDriverDescriptionW(WORD index, WCHAR *name, int name_len, WCHA ...@@ -125,7 +125,7 @@ BOOL VFWAPI capGetDriverDescriptionW(WORD index, WCHAR *name, int name_len, WCHA
struct get_device_desc_params params; struct get_device_desc_params params;
params.index = index; params.index = index;
if (__wine_unix_call(unix_handle, unix_get_device_desc, &params)) if (!unix_handle || __wine_unix_call(unix_handle, unix_get_device_desc, &params))
return FALSE; return FALSE;
TRACE("Found device name %s, version %s.\n", debugstr_w(params.name), debugstr_w(params.version)); TRACE("Found device name %s, version %s.\n", debugstr_w(params.name), debugstr_w(params.version));
......
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