diff --git a/node/AES_aesni.cpp b/node/AES_aesni.cpp index a185b1b36..37c499853 100644 --- a/node/AES_aesni.cpp +++ b/node/AES_aesni.cpp @@ -438,9 +438,9 @@ void AES::CTR::p_aesNICrypt(const uint8_t *in, uint8_t *out, unsigned int len) n #if !defined(ZT_AES_VAES512) && defined(ZT_AES_VAES256) if (Utils::CPUID.vaes && (len >= 256)) { - p_aesCtrInnerVAES256(len, _ctr[0], c1, in, out, k); - goto skip_conventional_aesni_64; - } + p_aesCtrInnerVAES256(len, _ctr[0], c1, in, out, k); + goto skip_conventional_aesni_64; + } #endif const uint8_t *const eof64 = in + (len & ~((unsigned int)63)); diff --git a/node/Packet.cpp b/node/Packet.cpp index d9378cc5e..e1345b317 100644 --- a/node/Packet.cpp +++ b/node/Packet.cpp @@ -543,7 +543,8 @@ FORCE_INLINE int LZ4_compress_generic( } else { refDelta = 0; lowLimit = (const BYTE*)source; - } } + } + } forwardH = LZ4_hashPosition(forwardIp, tableType); LZ4_putPositionOnHash(ip, h, cctx->hashTable, tableType, base); @@ -633,7 +634,8 @@ _next_match: } else { refDelta = 0; lowLimit = (const BYTE*)source; - } } + } + } LZ4_putPosition(ip, cctx->hashTable, tableType, base); if ( ((dictIssue==dictSmall) ? (match>=lowRefLimit) : 1) && (match+MAX_DISTANCE>=ip) @@ -823,7 +825,8 @@ FORCE_INLINE int LZ4_decompress_generic( } else { memcpy(op, lowPrefix, restSize); op += restSize; - } } + } + } continue; }