diff options
author | Karl Williamson <public@khwilliamson.com> | 2011-05-28 12:05:54 -0600 |
---|---|---|
committer | Karl Williamson <public@khwilliamson.com> | 2011-07-03 14:05:45 -0600 |
commit | 97bb10756102d09d001fbe89b2900b64476199dd (patch) | |
tree | ac2571a8c11cf468da8668c990f172f27a335ac2 /proto.h | |
parent | 198a51c423625d3171d450af5573095cd2c99964 (diff) | |
download | perl-97bb10756102d09d001fbe89b2900b64476199dd.tar.gz |
regcomp.c: Rmv no longer called function
This hasn't been used since 626725768b7b17463e9ec7b92e2da37105036252
Author: Nicholas Clark <nick@ccl4.org>
Date: Thu May 26 22:29:40 2011 -0600
regcomp.c: Fix memory leak regression
here was a remaining memory leak in the new inversion lists data
structure under threading. This solves it by changing the
implementation to use a SVpPV instead of doing our own memory
management. Then the already existing code for handling SVs
returns the memory when done.
Diffstat (limited to 'proto.h')
-rw-r--r-- | proto.h | 5 |
1 files changed, 0 insertions, 5 deletions
@@ -6076,11 +6076,6 @@ PERL_STATIC_INLINE void S_invlist_set_len(pTHX_ SV* const invlist, const UV len) #define PERL_ARGS_ASSERT_INVLIST_SET_LEN \ assert(invlist) -PERL_STATIC_INLINE void S_invlist_set_max(pTHX_ SV* const invlist, const UV max) - __attribute__nonnull__(pTHX_1); -#define PERL_ARGS_ASSERT_INVLIST_SET_MAX \ - assert(invlist) - PERL_STATIC_INLINE void S_invlist_trim(pTHX_ SV* const invlist) __attribute__nonnull__(pTHX_1); #define PERL_ARGS_ASSERT_INVLIST_TRIM \ |