summaryrefslogtreecommitdiffstats
path: root/src/if_perl.xs
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2020-03-29 20:51:07 +0200
committerBram Moolenaar <Bram@vim.org>2020-03-29 20:51:07 +0200
commit2027973b5be693577bea0731b50ea4904d19ea8b (patch)
tree9d1be9f140c9ba2e03bac242fb52ee99288a6313 /src/if_perl.xs
parent5908fdf72fa1995735e38c46f254ddde81a87c1f (diff)
patch 8.2.0479: unloading shared libraries on exit has no purposev8.2.0479
Problem: Unloading shared libraries on exit has no purpose. Solution: Do not unload shared libraries on exit.
Diffstat (limited to 'src/if_perl.xs')
-rw-r--r--src/if_perl.xs9
1 files changed, 1 insertions, 8 deletions
diff --git a/src/if_perl.xs b/src/if_perl.xs
index 12e1a227e1..3af309a65d 100644
--- a/src/if_perl.xs
+++ b/src/if_perl.xs
@@ -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
}
/*