mirror of
https://github.com/coturn/coturn.git
synced 2025-10-31 23:11:28 +01:00
Fix lint errors
This commit is contained in:
parent
eb3af26867
commit
386371c174
@ -747,7 +747,6 @@ int get_a_local_relay(int family, ioa_addr *relay_addr) {
|
||||
outBufLen = WORKING_BUFFER_SIZE;
|
||||
|
||||
do {
|
||||
|
||||
pAddresses = (IP_ADAPTER_ADDRESSES *)malloc(outBufLen);
|
||||
if (pAddresses == NULL) {
|
||||
TURN_LOG_FUNC(TURN_LOG_LEVEL_ERROR, "Memory allocation failed for IP_ADAPTER_ADDRESSES struct\n");
|
||||
@ -836,6 +835,7 @@ int get_a_local_relay(int family, ioa_addr *relay_addr) {
|
||||
if (pAddresses) {
|
||||
free(pAddresses);
|
||||
}
|
||||
return -1;
|
||||
#else
|
||||
struct ifaddrs *ifs = NULL;
|
||||
|
||||
@ -1782,6 +1782,7 @@ unsigned char *base64decode(const void *b64_decode_this, int decode_this_many_by
|
||||
while (0 < BIO_read(b64_bio, base64_decoded + decoded_byte_index, 1)) { // Read byte-by-byte.
|
||||
decoded_byte_index++; // Increment the index until read of BIO decoded data is complete.
|
||||
} // Once we're done reading decoded data, BIO_read returns -1 even though there's no error.
|
||||
|
||||
BIO_free_all(b64_bio); // Destroys all BIOs in chain, starting with b64 (i.e. the 1st one).
|
||||
return base64_decoded; // Returns base-64 decoded data with trailing null terminator.
|
||||
}
|
||||
@ -3833,7 +3834,6 @@ static void set_ctx(SSL_CTX **out, const char *protocol, const SSL_METHOD *metho
|
||||
*out = ctx;
|
||||
}
|
||||
|
||||
|
||||
#if OPENSSL_VERSION_NUMBER >= 0x30200010L
|
||||
if (turn_params.rpk_enabled) {
|
||||
unsigned char cert_type = TLSEXT_cert_type_rpk;
|
||||
|
||||
@ -32,11 +32,11 @@
|
||||
#define __MAIN_RELAY__
|
||||
|
||||
#include <limits.h>
|
||||
#include <stdbool.h>
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
#include <string.h>
|
||||
#include <time.h>
|
||||
#include <stdbool.h>
|
||||
|
||||
#include <locale.h>
|
||||
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user