diff options
author | David Mitchell <davem@iabyn.com> | 2019-04-16 22:17:45 +0100 |
---|---|---|
committer | David Mitchell <davem@iabyn.com> | 2019-04-17 07:19:11 +0100 |
commit | 62d66863817fd15632d9d2c8ea9c9df2ecb3705b (patch) | |
tree | f04dd8fc1476e32742c3755bd22c952035928134 /locale.c | |
parent | 16b9df3ebb85d9c71d6792b88f6633c04fe4b2c6 (diff) | |
download | perl-62d66863817fd15632d9d2c8ea9c9df2ecb3705b.tar.gz |
s/safefree()/Safefree() in a few places
Karl pointed that a couple of my recent commits used (lower case)
safefree() rather than Safefree(), the latter having extra debugging
facilities.
Diffstat (limited to 'locale.c')
-rw-r--r-- | locale.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -3948,7 +3948,7 @@ Perl__mem_collxfrm(pTHX_ const char *input_string, cur_min_x + COLLXFRM_HDR_LEN)) { PL_strxfrm_NUL_replacement = j; - safefree(cur_min_x); + Safefree(cur_min_x); cur_min_x = x; } else { @@ -4104,7 +4104,7 @@ Perl__mem_collxfrm(pTHX_ const char *input_string, cur_max_x + COLLXFRM_HDR_LEN)) { PL_strxfrm_max_cp = j; - safefree(cur_max_x); + Safefree(cur_max_x); cur_max_x = x; } else { |