summaryrefslogtreecommitdiffstats
path: root/image/SourceBuffer.h
Commit message (Collapse)AuthorAgeLines
* Check for contiguous buffer state.wolfbeast2019-01-21-0/+7
| | | | | | | | | | | | | | When we are reading large image data (i.e.: people using webp to stream video instead of the native webm format; I'm looking at you, Giphy!) we can run into the situation where the available data is not in a contiguous buffer, and we need to either buffer additional data or re-buffer from the start. If we don't do this, we can run into issues because of buffer over-reading (causing corrupted data if allocated or more likely crashes if not allocated). Re-buffering is expensive, but this should be rare and limited to dealing with unintended use for animated image formats. This resolves #940.
* Add m-esr52 at 52.6.0Matt A. Tobin2018-02-02-0/+459