diff options
author | dundargoc <33953936+dundargoc@users.noreply.github.com> | 2021-10-06 16:47:31 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-10-06 07:47:31 -0700 |
commit | d0c0878b3e8b2d2b80fa56038caea1f69c5d5499 (patch) | |
tree | 1a6487eb6a80d323197bf0ac2b12caed8e788bb7 /src/mpack/conv.c | |
parent | 45b9815fc1b23e19e5c5a9893702f0a79b3dfabd (diff) | |
download | rneovim-d0c0878b3e8b2d2b80fa56038caea1f69c5d5499.tar.gz rneovim-d0c0878b3e8b2d2b80fa56038caea1f69c5d5499.tar.bz2 rneovim-d0c0878b3e8b2d2b80fa56038caea1f69c5d5499.zip |
fix(PVS/V1048): "variable was assigned the same value" #15870
Diffstat (limited to 'src/mpack/conv.c')
-rw-r--r-- | src/mpack/conv.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/mpack/conv.c b/src/mpack/conv.c index 31297a8784..6bd446ca49 100644 --- a/src/mpack/conv.c +++ b/src/mpack/conv.c @@ -301,7 +301,6 @@ MPACK_API double mpack_unpack_number(mpack_token_t t) */ if (!hi) { assert(t.length <= 4); - hi = 0; lo = (~lo & (((mpack_uint32_t)1 << ((t.length * 8) - 1)) - 1)); } else { hi = ~hi; |