Skip to content

Commit 63c49d4

Browse files
committed
libmythdvdnav: fix typo to sync to latest libdvdnav rev
1 parent 3f1f877 commit 63c49d4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

mythtv/libs/libmythdvdnav/dvdnav/searching.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -305,7 +305,7 @@ dvdnav_status_t dvdnav_sector_search(dvdnav_t *this,
305305
cell = &(state->pgc->cell_playback[cell_nr-1]);
306306
if(cell->block_type == BLOCK_TYPE_ANGLE_BLOCK && cell->block_mode != BLOCK_MODE_FIRST_CELL)
307307
continue;
308-
length += cell->last_sector - cell->first_sector + 1;
308+
length = cell->last_sector - cell->first_sector + 1;
309309
if (target >= length) {
310310
target -= length;
311311
} else {

0 commit comments

Comments
 (0)