diff options
author | phintuka <phintuka> | 2007-05-30 09:15:28 +0000 |
---|---|---|
committer | phintuka <phintuka> | 2007-05-30 09:15:28 +0000 |
commit | b8bfe05b4f04129fa62e6a937d0174a7fac55a22 (patch) | |
tree | 914296d988e2a2c549a30e9d0e6d853b9ec44351 | |
parent | f77b579efb7c76f5a478ddd56054485ab5c368e0 (diff) | |
download | xineliboutput-b8bfe05b4f04129fa62e6a937d0174a7fac55a22.tar.gz xineliboutput-b8bfe05b4f04129fa62e6a937d0174a7fac55a22.tar.bz2 |
Fix segfault in verbose logging
-rw-r--r-- | xine/post.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/xine/post.c b/xine/post.c index 4f44fa05..e47498cc 100644 --- a/xine/post.c +++ b/xine/post.c @@ -351,7 +351,7 @@ void pplugin_parse_and_store_post(fe_t *fe, int plugin_type, #if 1 if(SysLogLevel > 2) { /* dump list of all loaded plugins */ - int ptot = *_post_elements_num + num; + int ptot = *_post_elements_num; int i; char s[4096]=""; for(i=0; i<ptot; i++) |