commit | 6f98114e4a5db3917c4f9d2fec09e11b4b0d0be5 | [log] [tgz] |
---|---|---|
author | Bram Moolenaar <Bram@vim.org> | Thu Sep 22 12:48:58 2022 +0100 |
committer | Bram Moolenaar <Bram@vim.org> | Thu Sep 22 12:48:58 2022 +0100 |
tree | 33afae7bcb249782fa0b4b8651c3c3be26fd55e7 | |
parent | 21d393a12be86126d9326ea0c244d3a101b77151 [diff] [blame] |
patch 9.0.0540: assigning stack variable to argument confuses Coverity Problem: Assigning stack variable to argument confuses Coverity. Solution: Use a local pointer, also makes the code simpler.
diff --git a/src/version.c b/src/version.c index 359c70c..a9c99e8 100644 --- a/src/version.c +++ b/src/version.c
@@ -700,6 +700,8 @@ static int included_patches[] = { /* Add new patch number below this line */ /**/ + 540, +/**/ 539, /**/ 538,