Merge "vp8_peek_si_internal: quiet static analysis warning"

This commit is contained in:
James Zern 2016-03-30 05:38:59 +00:00 коммит произвёл Gerrit Code Review
Родитель 904cb53302 1bf7a0fb29
Коммит 8d8ee1f644
1 изменённых файлов: 3 добавлений и 0 удалений

Просмотреть файл

@ -9,6 +9,7 @@
*/
#include <assert.h>
#include <stdlib.h>
#include <string.h>
#include "./vp8_rtcd.h"
@ -154,6 +155,8 @@ static vpx_codec_err_t vp8_peek_si_internal(const uint8_t *data,
{
vpx_codec_err_t res = VPX_CODEC_OK;
assert(data != NULL);
if(data + data_sz <= data)
{
res = VPX_CODEC_INVALID_PARAM;