Commit e32da3cb authored by Felix Paul Kühne's avatar Felix Paul Kühne

macosx/playlist: add another sanity check

parent 17c0beca
......@@ -997,6 +997,10 @@
PL_LOCK;
playlist_item_t *p_item = [o_item pointerValue];
if (!p_item || !p_item->p_input) {
PL_UNLOCK;
continue;
}
#ifndef NDEBUG
msg_Dbg( p_intf, "deleting item %i (of %i) with id \"%i\", pointerValue \"%p\" and %i children", i+1, i_count,
p_item->p_input->i_id, [o_item pointerValue], p_item->i_children +1 );
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment