From 86e6717ace4f5e00eaeb84b59e3fc92bca548155 Mon Sep 17 00:00:00 2001 From: Bram Moolenaar Date: Mon, 31 Oct 2022 12:24:12 +0000 Subject: patch 9.0.0820: memory leak with empty shell command Problem: Memory leak with empty shell command. Solution: Free the empty string. --- src/errors.h | 2 ++ 1 file changed, 2 insertions(+) (limited to 'src/errors.h') diff --git a/src/errors.h b/src/errors.h index 7aeca75ad..d3bca1a32 100644 --- a/src/errors.h +++ b/src/errors.h @@ -3330,4 +3330,6 @@ EXTERN char e_loop_nesting_too_deep[] INIT(= N_("E1306: Loop nesting too deep")); EXTERN char e_argument_nr_trying_to_modify_const_str[] INIT(= N_("E1307: Argument %d: Trying to modify a const %s")); +EXTERN char e_cannot_resize_window_in_another_tab_page[] + INIT(= N_("E1308: Cannot resize a window in another tab page")); #endif -- cgit v1.2.1