Skip to content
Permalink
Browse files Browse the repository at this point in the history
fixed #1568
  • Loading branch information
jeanlf committed Sep 1, 2020
1 parent ce01bd1 commit 8e05648
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/isomedia/box_code_adobe.c
Expand Up @@ -93,7 +93,7 @@ GF_Err abst_box_read(GF_Box *s, GF_BitStream *bs)

i=0;
if (ptr->size<8) return GF_ISOM_INVALID_FILE;
tmp_strsize =(u32)ptr->size-8;
tmp_strsize =(u32)ptr->size;
tmp_str = gf_malloc(sizeof(char)*tmp_strsize);
if (!tmp_str) return GF_OUT_OF_MEM;
memset(tmp_str, 0, sizeof(char)*tmp_strsize);
Expand Down

0 comments on commit 8e05648

Please sign in to comment.