diff options
author | kylo252 <59826753+kylo252@users.noreply.github.com> | 2022-02-16 19:24:07 +0000 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2022-02-16 19:24:07 +0000 |
commit | ae6f1d8b14c2f63811ee83ef14e32086fb3e9b83 (patch) | |
tree | 4982335c2afa3ef8515860dabea038acbc2af406 /src/fileio.c | |
parent | d288eaad846f0e07e0141226f97d858dcf96cb78 (diff) | |
download | vim-git-ae6f1d8b14c2f63811ee83ef14e32086fb3e9b83.tar.gz |
patch 8.2.4402: missing parenthesis may cause unexpected problemsv8.2.4402
Problem: Missing parenthesis may cause unexpected problems.
Solution: Add more parenthesis is macros. (closes #9788)
Diffstat (limited to 'src/fileio.c')
-rw-r--r-- | src/fileio.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/fileio.c b/src/fileio.c index 0812462da..73fa11b31 100644 --- a/src/fileio.c +++ b/src/fileio.c @@ -4799,7 +4799,7 @@ readdir_core( # ifdef FEAT_EVAL # define FREE_ITEM(item) do { \ if (withattr) \ - dict_unref((dict_T*)item); \ + dict_unref((dict_T*)(item)); \ else \ vim_free(item); \ } while (0) |