diff options
author | dundargoc <33953936+dundargoc@users.noreply.github.com> | 2022-05-15 15:04:56 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-05-15 21:04:56 +0800 |
commit | 793496aecc23fdee93040fc94ca3e1a66da73039 (patch) | |
tree | 2a7de4d94f7c04e0340b595ad059c0e5e49472c1 /src/nvim/ex_session.c | |
parent | 4c7462fdb313a64d6903809ece2d8d564c0ea420 (diff) | |
download | rneovim-793496aecc23fdee93040fc94ca3e1a66da73039.tar.gz rneovim-793496aecc23fdee93040fc94ca3e1a66da73039.tar.bz2 rneovim-793496aecc23fdee93040fc94ca3e1a66da73039.zip |
fix PVS warnings (#18459)
* fix(PVS/V547): remove ifs that are always true or false
* fix(PVS/V560): remove partial conditions that are always true
* fix(PVS/V1044): suppress warning about loop break conditions
* fix(PVS/V1063): suppress "modulo by 1 operation is meaningless"
* fix(PVS/V568): suppress "operator evaluates the size of a pointer"
Also mark vim-patch:8.2.4958 as ported.
Diffstat (limited to 'src/nvim/ex_session.c')
-rw-r--r-- | src/nvim/ex_session.c | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/src/nvim/ex_session.c b/src/nvim/ex_session.c index 4554af5356..cb1d400c56 100644 --- a/src/nvim/ex_session.c +++ b/src/nvim/ex_session.c @@ -1012,15 +1012,6 @@ void ex_mkrc(exarg_T *eap) emsg(_(e_prev_dir)); } shorten_fnames(true); - // restore original dir - if (*dirnow != NUL && ((ssop_flags & SSOP_SESDIR) - || ((ssop_flags & SSOP_CURDIR) && globaldir != - NULL))) { - if (os_chdir((char *)dirnow) != 0) { - emsg(_(e_prev_dir)); - } - shorten_fnames(true); - } } xfree(dirnow); } else { |