diff options
author | Alexey Yakovenko <wakeroid@gmail.com> | 2010-01-23 17:48:35 +0100 |
---|---|---|
committer | Alexey Yakovenko <wakeroid@gmail.com> | 2010-01-23 17:48:35 +0100 |
commit | d1fd877d83c895bc399682e23f123c94233c42fc (patch) | |
tree | 0767cc9aeee57a2690814987ae6227a35561949b /plugins/flac | |
parent | fa6b1f9f77cdfae8d59c69a85e6ae9c4b3fe8812 (diff) |
refcounted playitems
Diffstat (limited to 'plugins/flac')
-rw-r--r-- | plugins/flac/flac.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/flac/flac.c b/plugins/flac/flac.c index f621b50f..dbb355d3 100644 --- a/plugins/flac/flac.c +++ b/plugins/flac/flac.c @@ -631,7 +631,7 @@ cflac_insert (DB_playItem_t *after, const char *fname) { if (cuesheet) { DB_playItem_t *last = deadbeef->pl_insert_cue_from_buffer (after, it, cuesheet, strlen (cuesheet), info.totalsamples, info.info.samplerate); if (last) { - deadbeef->pl_item_free (it); + deadbeef->pl_item_unref (it); return last; } } @@ -659,7 +659,7 @@ cflac_insert (DB_playItem_t *after, const char *fname) { return after; cflac_insert_fail: if (it) { - deadbeef->pl_item_free (it); + deadbeef->pl_item_unref (it); } if (decoder) { FLAC__stream_decoder_delete(decoder); |