Avoid a type mismatch that shows up in C++11. Taken from . --- a/src/rtphint.cpp 2012-05-20 16:11:53.000000000 -0600 +++ b/src/rtphint.cpp 2017-05-16 10:25:26.930705191 -0600 @@ -339,7 +339,7 @@ pSlash = strchr(pSlash, '/'); if (pSlash != NULL) { pSlash++; - if (pSlash != '\0') { + if (*pSlash != '\0') { length = (uint32_t)strlen(pRtpMap) - (pSlash - pRtpMap); *ppEncodingParams = (char *)MP4Calloc(length + 1); strncpy(*ppEncodingParams, pSlash, length); ce472de1b24'/> Wojtek's customized Guix
aboutsummaryrefslogtreecommitdiff
path: root/gnu/machine
AgeCommit message (Expand)Author
2020-11-09machine: ssh: Do not import the host (guix config)....Ludovic Courtès
2020-11-01system: Add store-directory-prefix to boot-parameters....Miguel Ángel Arruga Vivas
2020-10-18system: Provide locale information to the bootloader....Miguel Ángel Arruga Vivas
2020-09-07linux-boot: Handle nfs-root device strings....Stefan
2020-08-25Remove "guile-zlib" extension when unused....Mathieu Othacehe
2020-08-25linux-libre: Support module compression....Mathieu Othacehe
2020-07-27machine: ssh: Check for potential system downgrades....Ludovic Courtès
2020-07-25Use 'formatted-message' instead of '&message' where appropriate....Ludovic Courtès
2020-06-28Add more missing (ice-9 format) imports....Marius Bakke
2020-06-18machine: ssh: Fix guix deploy hang when using non-DCE UUIDs....Maxim Cournoyer
2020-03-23machine: ssh: Better report missing initrd modules....Ludovic Courtès
2020-03-23machine: ssh: Make sanity checks in a single round trip....Ludovic Courtès
2020-02-09Update e-mail address for Jakob L. Kreuze....Tobias Geerinckx-Rice