aboutsummaryrefslogtreecommitdiff
path: root/src/mpack/lmpack.c
diff options
context:
space:
mode:
authorDundar Göc <gocdundar@gmail.com>2022-02-08 14:13:35 +0100
committerDundar Göc <gocdundar@gmail.com>2022-02-13 17:51:48 +0100
commit2ed6b99a42c41ca4cc28f57dc79274263384d5bb (patch)
tree6648a643da14031a6236fa738a393396f3fdc85e /src/mpack/lmpack.c
parent046950f6309070d98ab5a3deeff9d00e079ccdd4 (diff)
downloadrneovim-2ed6b99a42c41ca4cc28f57dc79274263384d5bb.tar.gz
rneovim-2ed6b99a42c41ca4cc28f57dc79274263384d5bb.tar.bz2
rneovim-2ed6b99a42c41ca4cc28f57dc79274263384d5bb.zip
refactor(PVS/V560): part of conditional expression is always true/false
Diffstat (limited to 'src/mpack/lmpack.c')
-rw-r--r--src/mpack/lmpack.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mpack/lmpack.c b/src/mpack/lmpack.c
index 126f2f3824..53d7092a0c 100644
--- a/src/mpack/lmpack.c
+++ b/src/mpack/lmpack.c
@@ -246,7 +246,7 @@ static mpack_uint32_t lmpack_objlen(lua_State *L, int *is_array)
}
end:
- if ((size_t)-1 > (mpack_uint32_t)-1 && len > (mpack_uint32_t)-1)
+ if ((size_t)-1 > (mpack_uint32_t)-1 && len > (mpack_uint32_t)-1) // -V560
/* msgpack spec doesn't allow lengths > 32 bits */
len = (mpack_uint32_t)-1;
assert(top == lua_gettop(L));