[bTSstream-devel] [Git][videolan/bitstream][master] Fix make check
Christophe Massiot (@cmassiot)
gitlab at videolan.org
Fri Sep 1 10:10:13 UTC 2023
Christophe Massiot pushed to branch master at VideoLAN / bitstream
Commits:
75f9939e by Arnaud de Turckheim at 2023-08-29T16:40:13+02:00
Fix make check
broken-by: d612bce9b6019f26347560454a36e5225dec105b
- - - - -
1 changed file:
- common.h
Changes:
=====================================
common.h
=====================================
@@ -81,7 +81,7 @@ static inline char *bitstream_xml_escape(const char *str)
size_t len = strlen(str);
size_t out_len = bitstream_xml_escape_len(str);
- char *out = malloc(out_len + 1);
+ char *out = (char *)malloc(out_len + 1);
if (!out)
return NULL;
View it on GitLab: https://code.videolan.org/videolan/bitstream/-/commit/75f9939e441de0feb9474bcaaf143dbf10b165e9
--
View it on GitLab: https://code.videolan.org/videolan/bitstream/-/commit/75f9939e441de0feb9474bcaaf143dbf10b165e9
You're receiving this email because of your account on code.videolan.org.
VideoLAN code repository instance
More information about the biTStream-devel
mailing list