Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-gpu
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-gpu
Commits
5ad6561c
Commit
5ad6561c
authored
Aug 01, 2008
by
Rémi Duraffort
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix [
10fcb9f9
] (win doesn't have setenv).
parent
0d8adc76
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
16 additions
and
0 deletions
+16
-0
modules/access/dvdread.c
modules/access/dvdread.c
+16
-0
No files found.
modules/access/dvdread.c
View file @
5ad6561c
...
...
@@ -225,7 +225,23 @@ static int Open( vlc_object_t *p_this )
/* Override environment variable DVDCSS_METHOD with config option */
psz_dvdcss_env
=
config_GetPsz
(
p_demux
,
"dvdread-css-method"
);
if
(
psz_dvdcss_env
&&
*
psz_dvdcss_env
)
#ifdef HAVE_SETENV
setenv
(
"DVDCSS_METHOD"
,
psz_dvdcss_env
,
1
);
#else
{
/* FIXME: this create a small memory leak */
char
*
psz_env
;
psz_env
=
malloc
(
strlen
(
"DVDCSS_METHOD="
)
+
strlen
(
psz_dvdcss_env
)
+
1
);
if
(
!
psz_env
)
{
free
(
psz_dvdcss_env
);
return
VLC_ENOMEM
;
}
sprintf
(
psz_env
,
"%s%s"
,
"DVDCSS_METHOD="
,
psz_dvdcss_env
);
putenv
(
psz_env
);
}
#endif
free
(
psz_dvdcss_env
);
/* Open dvdread */
...
...
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