diff src/vim9script.c @ 28594:294771aab3ae v8.2.4821

patch 8.2.4821: crash when imported autoload script was deleted Commit: https://github.com/vim/vim/commit/aac12daa61d9e84616771ec9242fd232f46786e6 Author: Bram Moolenaar <Bram@vim.org> Date: Sun Apr 24 21:33:20 2022 +0100 patch 8.2.4821: crash when imported autoload script was deleted Problem: Crash when imported autoload script was deleted. Solution: Initialize local variable. (closes https://github.com/vim/vim/issues/10274) Give a more meaningful error message.
author Bram Moolenaar <Bram@vim.org>
date Sun, 24 Apr 2022 22:45:04 +0200
parents 4dcccb2673fe
children daf785caecf2
line wrap: on
line diff
--- a/src/vim9script.c
+++ b/src/vim9script.c
@@ -713,7 +713,10 @@ find_exported(
     if (script->sn_import_autoload && script->sn_state == SN_STATE_NOT_LOADED)
     {
 	if (do_source(script->sn_name, FALSE, DOSO_NONE, NULL) == FAIL)
+	{
+	    semsg(_(e_cant_open_file_str), script->sn_name);
 	    return -1;
+	}
     }
 
     // Find name in "script".