Commit d405bfb6 authored by David Fuhrmann's avatar David Fuhrmann

h264_nal: fix memory corruption in parse_sps

parent 65770590
...@@ -417,7 +417,7 @@ int h264_parse_sps( const uint8_t *p_sps_buf, int i_sps_size, ...@@ -417,7 +417,7 @@ int h264_parse_sps( const uint8_t *p_sps_buf, int i_sps_size,
struct nal_sps *p_sps ) struct nal_sps *p_sps )
{ {
uint8_t *pb_dec = NULL; uint8_t *pb_dec = NULL;
int i_dec = 0; size_t i_dec = 0;
bs_t s; bs_t s;
int i_tmp; int i_tmp;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment