From 4707cff644ba8a0a180e5c006c14757e52f5a454 Mon Sep 17 00:00:00 2001 From: atmos4 Date: Wed, 20 Feb 2002 22:41:54 +0000 Subject: [PATCH] remove uneeded assert (common case at eof) git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@4772 b3059339-0415-0410-9bf9-f77b7e298cf2 --- cfgparser.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cfgparser.c b/cfgparser.c index 50a06deae4..a9989a5394 100644 --- a/cfgparser.c +++ b/cfgparser.c @@ -216,7 +216,7 @@ m_config_pop(m_config_t* config) { #ifdef MP_DEBUG assert(config != NULL); - assert(config->cs_level > 0); + //assert(config->cs_level > 0); #endif if(config->config_stack[config->cs_level] != NULL) {