mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-03-28 12:32:17 +02:00
avcodec/dvbsubdec: av_assert* instead of assert()
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
84ccc317ce
commit
d03867c248
@ -306,7 +306,7 @@ static void delete_region_display_list(DVBSubContext *ctx, DVBSubRegion *region)
|
|||||||
obj2 = *obj2_ptr;
|
obj2 = *obj2_ptr;
|
||||||
|
|
||||||
while (obj2 != object) {
|
while (obj2 != object) {
|
||||||
assert(obj2);
|
av_assert0(obj2);
|
||||||
obj2_ptr = &obj2->next;
|
obj2_ptr = &obj2->next;
|
||||||
obj2 = *obj2_ptr;
|
obj2 = *obj2_ptr;
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user