Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
Steve Lhomme
VLC
Commits
9f7cb303
Commit
9f7cb303
authored
Sep 16, 2005
by
damienf
Browse files
dshow.cpp: make sure driver name is properly NULL terminated
parent
19313bbf
Changes
1
Hide whitespace changes
Inline
Side-by-side
modules/access/dshow/dshow.cpp
View file @
9f7cb303
...
...
@@ -1112,10 +1112,11 @@ FindCaptureDevice( vlc_object_t *p_this, string *p_devicename,
{
int
i_convert
=
WideCharToMultiByte
(
CP_ACP
,
0
,
var
.
bstrVal
,
SysStringLen
(
var
.
bstrVal
),
NULL
,
0
,
NULL
,
NULL
);
char
*
p_buf
=
(
char
*
)
alloca
(
i_convert
);
p_buf
[
0
]
=
0
;
char
*
p_buf
=
(
char
*
)
alloca
(
i_convert
+
1
);
p_buf
[
0
]
=
0
;
WideCharToMultiByte
(
CP_ACP
,
0
,
var
.
bstrVal
,
SysStringLen
(
var
.
bstrVal
),
p_buf
,
i_convert
,
NULL
,
NULL
);
SysFreeString
(
var
.
bstrVal
);
p_buf
[
i_convert
]
=
'\0'
;
if
(
p_listdevices
)
p_listdevices
->
push_back
(
p_buf
);
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment