diff options
author | Karl Williamson <khw@cpan.org> | 2016-04-06 21:46:28 -0600 |
---|---|---|
committer | Karl Williamson <khw@cpan.org> | 2016-04-09 13:59:24 -0600 |
commit | 929e12133425199fce3fe026156c10876ac0cbb8 (patch) | |
tree | 95286d2bc13b80afe4ed3872c14fd9c081235260 /win32 | |
parent | 68b940afc96546256736bc5d8185075ddc12b205 (diff) | |
download | perl-929e12133425199fce3fe026156c10876ac0cbb8.tar.gz |
Add locale mutex
This adds a new mutex for use in the next commit for use with locale
handling.
Diffstat (limited to 'win32')
-rw-r--r-- | win32/win32.c | 1 | ||||
-rw-r--r-- | win32/wince.c | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/win32/win32.c b/win32/win32.c index 651b97b417..6ac73e2af0 100644 --- a/win32/win32.c +++ b/win32/win32.c @@ -4529,6 +4529,7 @@ Perl_win32_term(void) OP_REFCNT_TERM; PERLIO_TERM; MALLOC_TERM; + LOCALE_TERM; #ifndef WIN32_NO_REGISTRY /* handles might be NULL, RegCloseKey then returns ERROR_INVALID_HANDLE but no point of checking and we can't die() at this point */ diff --git a/win32/wince.c b/win32/wince.c index bcc66c8c12..ce064810ed 100644 --- a/win32/wince.c +++ b/win32/wince.c @@ -2705,6 +2705,7 @@ Perl_win32_term(void) OP_REFCNT_TERM; PERLIO_TERM; MALLOC_TERM; + LOCALE_TERM; } void |