mirror of
https://github.com/vim/vim.git
synced 2025-09-25 03:54:15 -04:00
patch 8.2.4821: crash when imported autoload script was deleted
Problem: Crash when imported autoload script was deleted. Solution: Initialize local variable. (closes #10274) Give a more meaningful error message.
This commit is contained in:
@@ -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".
|
||||
|
Reference in New Issue
Block a user