This commit is contained in:
Valentin Bartenev
2018-04-05 15:49:41 +03:00
parent 49bd3a21e0
commit d15b4ca906
9 changed files with 30 additions and 27 deletions

View File

@@ -292,10 +292,10 @@ nxt_app_msg_read_length(u_char *src, size_t *length)
src++;
} else {
*length = ((src[0] & 0x7FU) << 24) +
(src[1] << 16) +
(src[2] << 8) +
src[3];
*length = ((src[0] & 0x7FU) << 24)
+ ( src[1] << 16)
+ ( src[2] << 8)
+ src[3];
src += 4;
}