workaround for gui a short time.

git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@4961 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
pontscho 2002-03-06 23:27:20 +00:00
parent 153aa39ed8
commit 95022a8271
1 changed files with 3 additions and 1 deletions

View File

@ -441,7 +441,8 @@ play_tree_iter_new(play_tree_t* pt,m_config_t* config) {
void
play_tree_iter_free(play_tree_iter_t* iter) {
if ( !iter ) return;
#ifdef MP_DEBUG
assert(iter != NULL);
#endif
@ -460,6 +461,7 @@ int
play_tree_iter_step(play_tree_iter_t* iter, int d,int with_nodes) {
play_tree_t* pt;
if ( !iter ) return PLAY_TREE_ITER_ERROR;
#ifdef MP_DEBUG
assert(iter != NULL);
assert(iter->root != NULL);