Browse Source

avutil/log: fix memleak from 669a09fb37

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
tags/n2.3
Michael Niedermayer 11 years ago
parent
commit
7c71076470
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      libavutil/log.c

+ 1
- 1
libavutil/log.c View File

@@ -332,7 +332,7 @@ void av_log_default_callback(void* ptr, int level, const char* fmt, va_list vl)
sanitize(part[3].str);
colored_fputs(av_clip(level >> 3, 0, 6), tint >> 8, part[3].str);
end:
av_bprint_finalize(part+2, NULL);
av_bprint_finalize(part+3, NULL);
#if HAVE_PTHREADS
pthread_mutex_unlock(&mutex);
#endif


Loading…
Cancel
Save