mirror of
https://github.com/vim/vim.git
synced 2025-09-23 03:43:49 -04:00
patch 8.2.0479: unloading shared libraries on exit has no purpose
Problem: Unloading shared libraries on exit has no purpose. Solution: Do not unload shared libraries on exit.
This commit is contained in:
@@ -762,7 +762,7 @@ perl_init(void)
|
||||
}
|
||||
|
||||
/*
|
||||
* perl_end(): clean up after ourselves
|
||||
* Clean up after ourselves.
|
||||
*/
|
||||
void
|
||||
perl_end(void)
|
||||
@@ -777,13 +777,6 @@ perl_end(void)
|
||||
Perl_sys_term();
|
||||
#endif
|
||||
}
|
||||
#ifdef DYNAMIC_PERL
|
||||
if (hPerlLib)
|
||||
{
|
||||
close_dll(hPerlLib);
|
||||
hPerlLib = NULL;
|
||||
}
|
||||
#endif
|
||||
}
|
||||
|
||||
/*
|
||||
|
Reference in New Issue
Block a user