summaryrefslogtreecommitdiffstats
path: root/playtree.c
diff options
context:
space:
mode:
Diffstat (limited to 'playtree.c')
-rw-r--r--playtree.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/playtree.c b/playtree.c
index ead621b4fe..2318dd1283 100644
--- a/playtree.c
+++ b/playtree.c
@@ -21,8 +21,10 @@ play_tree_is_valid(play_tree_t* pt);
play_tree_t*
play_tree_new(void) {
play_tree_t* r = calloc(1,sizeof(play_tree_t));
- if(r == NULL)
+ if(r == NULL) {
mp_msg(MSGT_PLAYTREE,MSGL_ERR,"Can't allocate %d bytes of memory\n",(int)sizeof(play_tree_t));
+ return NULL;
+ }
r->entry_type = PLAY_TREE_ENTRY_NODE;
return r;
}