Mercurial > mplayer.hg
changeset 34056:792c1e241416
Correct comment on playtree and playtree_iter in connection with the GUI.
Only playtree_iter is freed, playtree remains unchanged - but won't be used.
The GUI provides MPlayer with the respective (next) filename to play.
author | ib |
---|---|
date | Wed, 28 Sep 2011 13:53:15 +0000 |
parents | 5bd7e92fb132 |
children | 418e04046d98 |
files | mplayer.c |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/mplayer.c Wed Sep 28 09:59:02 2011 +0000 +++ b/mplayer.c Wed Sep 28 13:53:15 2011 +0000 @@ -2801,7 +2801,7 @@ #endif if (use_gui && mpctx->playtree_iter) { char cwd[PATH_MAX + 2]; - // Free Playtree and Playtree-Iter as it's not used by the GUI. + // Free playtree_iter as it's not used in connection with the GUI. play_tree_iter_free(mpctx->playtree_iter); mpctx->playtree_iter = NULL;