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
10fcb9f9
Commit
10fcb9f9
authored
Jul 31, 2008
by
Rémi Duraffort
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Access dvdread: use setenv instead of putenv to fix a memleak.
parent
6b908430
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
17 deletions
+2
-17
modules/access/dvdread.c
modules/access/dvdread.c
+2
-17
No files found.
modules/access/dvdread.c
View file @
10fcb9f9
...
...
@@ -222,25 +222,10 @@ static int Open( vlc_object_t *p_this )
psz_name
[
2
]
==
'\\'
&&
psz_name
[
3
]
==
'\0'
)
psz_name
[
2
]
=
'\0'
;
#endif
/* Override environment variable DVDCSS_METHOD with config option
* (FIXME: this creates a small memory leak) */
/* 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
)
{
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
);
}
setenv
(
"DVDCSS_METHOD"
,
psz_dvdcss_env
,
1
);
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