Bug 572586 - First seek in WebM file with Cues at end of file fails. r=cdouble

This commit is contained in:
Matthew Gregan 2010-06-17 21:46:30 +02:00
parent 0a9ab25039
commit 30affc1c37
2 changed files with 2 additions and 2 deletions

View File

@ -5,4 +5,4 @@ Makefile.in build files for the Mozilla build system.
The nestegg git repository is: git://github.com/kinetiknz/nestegg.git
The git commit ID used was fd84c148ed9ebe41366f0d13aa46056dd5b7c57b.
The git commit ID used was 5f0ffb8d31782db47d3db541f038caae4ddee9e6.

View File

@ -1556,7 +1556,7 @@ nestegg_track_seek(nestegg * ctx, unsigned int track, uint64_t tstamp)
if (ctx_restore(ctx, &state) != 0)
return -1;
if (r != 1)
if (r < 0)
return -1;
}