redundant

Originally committed as revision 13484 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
Michael Niedermayer 2008-05-28 01:30:59 +00:00
parent fce88d52ca
commit 8403c543de

View File

@ -289,7 +289,8 @@ static void delete_region_display_list(DVBSubContext *ctx, DVBSubRegion *region)
obj2 = ctx->object_list;
obj2_ptr = &ctx->object_list;
while (obj2 && obj2 != object) {
while (obj2 != object) {
assert(obj2);
obj2_ptr = &obj2->next;
obj2 = obj2->next;
}