comparison src/globals.h @ 29340:fba9e366ced4 v9.0.0013

patch 9.0.0013: reproducing memory access errors can be difficult Commit: https://github.com/vim/vim/commit/fa4873ccfc10e0f278dc46f39d00136fab059b19 Author: Bram Moolenaar <Bram@vim.org> Date: Thu Jun 30 22:13:59 2022 +0100 patch 9.0.0013: reproducing memory access errors can be difficult Problem: Reproducing memory access errors can be difficult. Solution: When testing, copy each line to allocated memory, so that valgrind can detect accessing memory before and/or after it. Fix uncovered problems.
author Bram Moolenaar <Bram@vim.org>
date Thu, 30 Jun 2022 23:15:03 +0200
parents 48b36959a4fc
children 9dce192d1ac2
comparison
equal deleted inserted replaced
29339:a023e3008ae3 29340:fba9e366ced4
1652 EXTERN int ui_delay_for_testing INIT(= 0); 1652 EXTERN int ui_delay_for_testing INIT(= 0);
1653 EXTERN int reset_term_props_on_termresponse INIT(= FALSE); 1653 EXTERN int reset_term_props_on_termresponse INIT(= FALSE);
1654 EXTERN int disable_vterm_title_for_testing INIT(= FALSE); 1654 EXTERN int disable_vterm_title_for_testing INIT(= FALSE);
1655 EXTERN long override_sysinfo_uptime INIT(= -1); 1655 EXTERN long override_sysinfo_uptime INIT(= -1);
1656 EXTERN int override_autoload INIT(= FALSE); 1656 EXTERN int override_autoload INIT(= FALSE);
1657 EXTERN int ml_get_alloc_lines INIT(= FALSE);
1657 1658
1658 EXTERN int in_free_unref_items INIT(= FALSE); 1659 EXTERN int in_free_unref_items INIT(= FALSE);
1659 #endif 1660 #endif
1660 1661
1661 #ifdef FEAT_TIMERS 1662 #ifdef FEAT_TIMERS