Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-2-2
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
videolan
vlc-2-2
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