mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-04-02 20:42:49 +00:00
Bug 778105 - Fix an nsOggReader::GetBuffered() return value type mismatch. r=doublec
This commit is contained in:
parent
5160a4d6a5
commit
3747bd5737
@ -1653,11 +1653,10 @@ nsresult nsOggReader::GetBuffered(nsTimeRanges* aBuffered, PRInt64 aStartTime)
|
|||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
// Page is for a stream we don't know about (possibly a chained
|
// Page is for a stream we don't know about (possibly a chained
|
||||||
// ogg), return an error.
|
// ogg), return OK to abort the finding any further ranges. This
|
||||||
//
|
// prevents us searching through the rest of the media when we
|
||||||
// XXX Invalid cast of PageSyncResult to nsresult -- this has numeric
|
// may not be able to extract timestamps from it.
|
||||||
// value 1 and will pass an NS_SUCCEEDED() check (bug 778105)
|
return NS_OK;
|
||||||
return (nsresult)PAGE_SYNC_ERROR;
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user