git.videolan.org
/
vlc.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
| inline |
side by side
Avoid using msg_* when running out of memory.
[vlc.git]
/
modules
/
gui
/
maemo
/
maemo.c
diff --git
a/modules/gui/maemo/maemo.c
b/modules/gui/maemo/maemo.c
index
4d2234c
..
08bebcc
100644
(file)
--- a/
modules/gui/maemo/maemo.c
+++ b/
modules/gui/maemo/maemo.c
@@
-84,10
+84,7
@@
static int Open( vlc_object_t *p_this )
/* Allocate instance and initialize some members */
p_intf->p_sys = malloc( sizeof( intf_sys_t ) );
if( p_intf->p_sys == NULL )
- {
- msg_Err( p_intf, "out of memory" );
return VLC_ENOMEM;
- }
p_intf->pf_run = Run;