Loading tests/libtest/lib571.c +1 −1 Original line number Diff line number Diff line Loading @@ -56,7 +56,7 @@ static size_t rtp_write(void *ptr, size_t size, size_t nmemb, void *stream) int channel = RTP_PKT_CHANNEL(data); int message_size; int coded_size = RTP_PKT_LENGTH(data); size_t failure = (size * nmemb) ? 0 : 1; size_t failure = (size && nmemb) ? 0 : 1; int i; (void)stream; Loading tests/libtest/libntlmconnect.c +1 −1 Original line number Diff line number Diff line Loading @@ -44,7 +44,7 @@ static size_t callback(char *ptr, size_t size, size_t nmemb, void *data) long longdata; CURLcode code; const size_t failure = (size * nmemb) ? 0 : 1; const size_t failure = (size && nmemb) ? 0 : 1; char *output = malloc(size * nmemb + 1); if(!output) { Loading Loading
tests/libtest/lib571.c +1 −1 Original line number Diff line number Diff line Loading @@ -56,7 +56,7 @@ static size_t rtp_write(void *ptr, size_t size, size_t nmemb, void *stream) int channel = RTP_PKT_CHANNEL(data); int message_size; int coded_size = RTP_PKT_LENGTH(data); size_t failure = (size * nmemb) ? 0 : 1; size_t failure = (size && nmemb) ? 0 : 1; int i; (void)stream; Loading
tests/libtest/libntlmconnect.c +1 −1 Original line number Diff line number Diff line Loading @@ -44,7 +44,7 @@ static size_t callback(char *ptr, size_t size, size_t nmemb, void *data) long longdata; CURLcode code; const size_t failure = (size * nmemb) ? 0 : 1; const size_t failure = (size && nmemb) ? 0 : 1; char *output = malloc(size * nmemb + 1); if(!output) { Loading