Commit fa21df2b authored by Limin Wang's avatar Limin Wang

avformat/rtmpproto: use av_reallocp_array()

Signed-off-by: 's avatarLimin Wang <lance.lmwang@gmail.com>
parent 1a944563
...@@ -163,7 +163,7 @@ static int add_tracked_method(RTMPContext *rt, const char *name, int id) ...@@ -163,7 +163,7 @@ static int add_tracked_method(RTMPContext *rt, const char *name, int id)
if (rt->nb_tracked_methods + 1 > rt->tracked_methods_size) { if (rt->nb_tracked_methods + 1 > rt->tracked_methods_size) {
rt->tracked_methods_size = (rt->nb_tracked_methods + 1) * 2; rt->tracked_methods_size = (rt->nb_tracked_methods + 1) * 2;
if ((err = av_reallocp(&rt->tracked_methods, rt->tracked_methods_size * if ((err = av_reallocp_array(&rt->tracked_methods, rt->tracked_methods_size,
sizeof(*rt->tracked_methods))) < 0) { sizeof(*rt->tracked_methods))) < 0) {
rt->nb_tracked_methods = 0; rt->nb_tracked_methods = 0;
rt->tracked_methods_size = 0; rt->tracked_methods_size = 0;
......
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