Files
bpfire/src/patches/vim/vim-9.1_fix_hardening_crash.patch
Adolf Belka 232b3297ea vim: Update to version 9.1
- Update from version 9.0 to 9.1
- Update of rootfile
- Update of hardening crash patch
- Changelog can be found at https://www.vim.org/vim-9.1-released.php

Signed-off-by: Adolf Belka <adolf.belka@ipfire.org>
Reviewed-by: Michael Tremer <michael.tremer@ipfire.org>
Signed-off-by: Arne Fitzenreiter <arne_f@ipfire.org>
2024-06-27 08:02:51 +02:00

16 lines
519 B
Diff

source: https://github.com/vim/vim/issues/5581
diff -Naur vim91/src/structs.h.orig vim91/src/structs.h
--- vim91/src/structs.h.orig 2023-12-18 08:47:12.000000000 +0100
+++ vim91/src/structs.h 2024-05-21 13:18:22.389336943 +0200
@@ -1727,7 +1727,7 @@
{
typval_T di_tv; // type and value of the variable
char_u di_flags; // DI_FLAGS_ flags (only used for variable)
- char_u di_key[1]; // key (actually longer!)
+ char_u di_key[]; // key (actually longer!)
};
typedef struct dictitem_S dictitem_T;