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
9f0ab732
Commit
9f0ab732
authored
Jul 06, 2004
by
Gildas Bazin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* src/stream_output/stream_output.c: don't forget to detach an object before destroying it.
parent
c523f5a5
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
0 deletions
+3
-0
src/stream_output/stream_output.c
src/stream_output/stream_output.c
+3
-0
No files found.
src/stream_output/stream_output.c
View file @
9f0ab732
...
...
@@ -147,6 +147,7 @@ sout_instance_t *__sout_NewInstance( vlc_object_t *p_parent, char * psz_dest )
FREE
(
p_sout
->
psz_sout
);
FREE
(
p_sout
->
psz_chain
);
vlc_object_detach
(
p_sout
);
vlc_object_destroy
(
p_sout
);
return
NULL
;
}
...
...
@@ -303,6 +304,7 @@ sout_access_out_t *sout_AccessOutNew( sout_instance_t *p_sout,
{
free
(
p_access
->
psz_access
);
free
(
p_access
->
psz_name
);
vlc_object_detach
(
p_access
);
vlc_object_destroy
(
p_access
);
return
(
NULL
);
}
...
...
@@ -396,6 +398,7 @@ sout_mux_t * sout_MuxNew( sout_instance_t *p_sout, char *psz_mux,
{
FREE
(
p_mux
->
psz_mux
);
vlc_object_detach
(
p_mux
);
vlc_object_destroy
(
p_mux
);
return
NULL
;
}
...
...
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