diff options
author | atmos4 <atmos4@b3059339-0415-0410-9bf9-f77b7e298cf2> | 2002-02-20 22:41:54 +0000 |
---|---|---|
committer | atmos4 <atmos4@b3059339-0415-0410-9bf9-f77b7e298cf2> | 2002-02-20 22:41:54 +0000 |
commit | 4707cff644ba8a0a180e5c006c14757e52f5a454 (patch) | |
tree | bae0c04ee6503e048cc002864917b14379c9644a /cfgparser.c | |
parent | 64f3eca29d0fcc690615b40c751bb3c69dccc7c2 (diff) | |
download | mpv-4707cff644ba8a0a180e5c006c14757e52f5a454.tar.bz2 mpv-4707cff644ba8a0a180e5c006c14757e52f5a454.tar.xz |
remove uneeded assert (common case at eof)
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@4772 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'cfgparser.c')
-rw-r--r-- | cfgparser.c | 2 |
1 files changed, 1 insertions, 1 deletions
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) { |