Commit d03867c2 authored by Michael Niedermayer's avatar Michael Niedermayer

avcodec/dvbsubdec: av_assert* instead of assert()

Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent 84ccc317
......@@ -306,7 +306,7 @@ static void delete_region_display_list(DVBSubContext *ctx, DVBSubRegion *region)
obj2 = *obj2_ptr;
while (obj2 != object) {
assert(obj2);
av_assert0(obj2);
obj2_ptr = &obj2->next;
obj2 = *obj2_ptr;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment