Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc
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
Commits
90ab0701
Commit
90ab0701
authored
May 31, 2008
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix memory leak (CID 95)
parent
13a1c6b8
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
8 deletions
+3
-8
src/input/vlmshell.c
src/input/vlmshell.c
+3
-8
No files found.
src/input/vlmshell.c
View file @
90ab0701
...
@@ -968,17 +968,12 @@ vlm_media_sys_t *vlm_MediaSearch( vlm_t *vlm, const char *psz_name )
...
@@ -968,17 +968,12 @@ vlm_media_sys_t *vlm_MediaSearch( vlm_t *vlm, const char *psz_name )
*****************************************************************************/
*****************************************************************************/
static
vlm_schedule_sys_t
*
vlm_ScheduleNew
(
vlm_t
*
vlm
,
const
char
*
psz_name
)
static
vlm_schedule_sys_t
*
vlm_ScheduleNew
(
vlm_t
*
vlm
,
const
char
*
psz_name
)
{
{
vlm_schedule_sys_t
*
p_sched
=
malloc
(
sizeof
(
vlm_schedule_sys_t
)
);
if
(
!
psz_name
)
if
(
!
p_sched
)
{
return
NULL
;
return
NULL
;
}
if
(
!
psz_name
)
vlm_schedule_sys_t
*
p_sched
=
malloc
(
sizeof
(
vlm_schedule_sys_t
)
);
{
if
(
!
p_sched
)
return
NULL
;
return
NULL
;
}
p_sched
->
psz_name
=
strdup
(
psz_name
);
p_sched
->
psz_name
=
strdup
(
psz_name
);
p_sched
->
b_enabled
=
false
;
p_sched
->
b_enabled
=
false
;
...
...
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