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
17950a15
Commit
17950a15
authored
Aug 05, 2005
by
Christophe Massiot
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* ALL: a couple more vlc_object_release()...
parent
96377d38
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
0 deletions
+6
-0
modules/control/rc.c
modules/control/rc.c
+1
-0
modules/gui/skins2/src/skin_main.cpp
modules/gui/skins2/src/skin_main.cpp
+5
-0
No files found.
modules/control/rc.c
View file @
17950a15
...
...
@@ -1038,6 +1038,7 @@ static int Other( vlc_object_t *p_this, char const *psz_cmd,
FIND_ANYWHERE
);
if
(
!
p_inp
)
{
vlc_object_release
(
p_pl
);
return
VLC_ENOOBJ
;
}
...
...
modules/gui/skins2/src/skin_main.cpp
View file @
17950a15
...
...
@@ -109,26 +109,31 @@ static int Open( vlc_object_t *p_this )
if
(
OSFactory
::
instance
(
p_intf
)
==
NULL
)
{
msg_Err
(
p_intf
,
"Cannot initialize OSFactory"
);
vlc_object_release
(
p_intf
->
p_sys
->
p_playlist
);
return
VLC_EGENERIC
;
}
if
(
AsyncQueue
::
instance
(
p_intf
)
==
NULL
)
{
msg_Err
(
p_intf
,
"Cannot initialize AsyncQueue"
);
vlc_object_release
(
p_intf
->
p_sys
->
p_playlist
);
return
VLC_EGENERIC
;
}
if
(
Interpreter
::
instance
(
p_intf
)
==
NULL
)
{
msg_Err
(
p_intf
,
"Cannot instanciate Interpreter"
);
vlc_object_release
(
p_intf
->
p_sys
->
p_playlist
);
return
VLC_EGENERIC
;
}
if
(
VarManager
::
instance
(
p_intf
)
==
NULL
)
{
msg_Err
(
p_intf
,
"Cannot instanciate VarManager"
);
vlc_object_release
(
p_intf
->
p_sys
->
p_playlist
);
return
VLC_EGENERIC
;
}
if
(
VlcProc
::
instance
(
p_intf
)
==
NULL
)
{
msg_Err
(
p_intf
,
"Cannot initialize VLCProc"
);
vlc_object_release
(
p_intf
->
p_sys
->
p_playlist
);
return
VLC_EGENERIC
;
}
Dialogs
::
instance
(
p_intf
);
...
...
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