mirror of https://git.ffmpeg.org/ffmpeg.git
avutil/log: Fix context pointer used for get_category()
Fixes calling a random pointer Found-by: Mateusz "j00ru" Jurczyk and Gynvael Coldwind Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
53efb2fa09
commit
7edb984dd0
|
@ -180,7 +180,7 @@ static void format_line(void *ptr, int level, const char *fmt, va_list vl,
|
|||
if (parent && *parent) {
|
||||
snprintf(part[0], part_size, "[%s @ %p] ",
|
||||
(*parent)->item_name(parent), parent);
|
||||
if(type) type[0] = get_category(((uint8_t *) ptr) + avc->parent_log_context_offset);
|
||||
if(type) type[0] = get_category(parent);
|
||||
}
|
||||
}
|
||||
snprintf(part[1], part_size, "[%s @ %p] ",
|
||||
|
|
Loading…
Reference in New Issue