Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
7
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Open sidebar
Steve Lhomme
VLC
Commits
9f7cb303
Commit
9f7cb303
authored
Sep 16, 2005
by
Damien Fouilleul
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
dshow.cpp: make sure driver name is properly NULL terminated
parent
19313bbf
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
1 deletion
+2
-1
modules/access/dshow/dshow.cpp
modules/access/dshow/dshow.cpp
+2
-1
No files found.
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
Markdown
is supported
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