Merge "vp8_peek_si_internal: quiet static analysis warning"
This commit is contained in:
Коммит
8d8ee1f644
|
@ -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;
|
||||
|
|
Загрузка…
Ссылка в новой задаче