summaryrefslogtreecommitdiffstats
path: root/libavutil/log.c
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2011-05-09 04:27:07 +0200
committerMichael Niedermayer <michaelni@gmx.at>2011-05-09 04:50:56 +0200
commit6841c8c5791e857a3327411f23c13b0d28f69f1f (patch)
tree37f670ac509799ee0f4a067e2f632cc28a587082 /libavutil/log.c
parent25308afbb2f7d6d9cb1e36476bc5aa0b3831c703 (diff)
parent847aaec682f2bbfaac55ee623364dd4527e0f341 (diff)
downloadffmpeg-streaming-6841c8c5791e857a3327411f23c13b0d28f69f1f.zip
ffmpeg-streaming-6841c8c5791e857a3327411f23c13b0d28f69f1f.tar.gz
Merge remote branch 'qatar/master'
* qatar/master: log: Fix an oob array read. cosmetics: trim trailing whitespace in postproc Ban strncpy() it's too easy to misuse. psymodel: Remove wrapper functions. aacenc: Replace loop counters in aac_encode_frame() with more descriptive 'ch' and 'w'. regtest: remove redundant flags in jpg test regtest: use run_ffmpeg in do_image_formats regtest: simplify encoding functions ffmpeg.c: check for interlaced flag in the correct place. Merged-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavutil/log.c')
-rw-r--r--libavutil/log.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavutil/log.c b/libavutil/log.c
index c9a4f7f..fd5e2cb 100644
--- a/libavutil/log.c
+++ b/libavutil/log.c
@@ -111,7 +111,7 @@ void av_log_default_callback(void* ptr, int level, const char* fmt, va_list vl)
vsnprintf(line + strlen(line), sizeof(line) - strlen(line), fmt, vl);
- print_prefix= line[strlen(line)-1] == '\n';
+ print_prefix = strlen(line) && line[strlen(line)-1] == '\n';
#if HAVE_ISATTY
if(!is_atty) is_atty= isatty(2) ? 1 : -1;
OpenPOWER on IntegriCloud