Skip to content
Permalink
Browse files Browse the repository at this point in the history
fixed #1566
  • Loading branch information
jeanlf committed Sep 1, 2020
1 parent 9eeac00 commit ce01bd1
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion applications/mp4box/filedump.c
Expand Up @@ -1624,7 +1624,8 @@ void dump_isom_sdp(GF_ISOFile *file, char *inName, Bool is_final_name)
}
//get the movie SDP
gf_isom_sdp_get(file, &sdp, &size);
fprintf(dump, "%s", sdp);
if (sdp && size)
fprintf(dump, "%s", sdp);
fprintf(dump, "\r\n");

//then tracks
Expand Down

0 comments on commit ce01bd1

Please sign in to comment.