stephen douglas: > ISO 639 language descriptors used by DVB are the 3 charecter variants hence > const char *language = lang && strlen(lang->value) >= 3 ? lang->value : > default_language;should beconst char *language = lang && strlen(lang->value) > > 3 ? lang->value : default_language;
1. Stop top-posting. 2. Are you even aware that strlen does not include the trailing \0? > On Saturday, 3 April 2021, 06:53:20 BST, Andreas Rheinhardt > <[email protected]> wrote: > > Implements ticket #9113. > > Signed-off-by: Andreas Rheinhardt <[email protected]> > --- _______________________________________________ ffmpeg-devel mailing list [email protected] https://ffmpeg.org/mailman/listinfo/ffmpeg-devel To unsubscribe, visit link above, or email [email protected] with subject "unsubscribe".
