Possible NULL pointer reference found by Coverity checks.
[p5sagit/p5-mst-13.2.git] / sv.c
2006-03-10 Nicholas Clark Move the 12 static MAD variables from toke.c into the...
2006-03-09 Nicholas Clark The remainder of the toke.c MAD changes. Now to investi...
2006-03-07 Nicholas Clark Remove the #define - ARENASETS are always on now.
2006-03-05 Nicholas Clark Perl_gv_name_set should not leak the old HEK. Allow...
2006-03-05 Nicholas Clark Use a HEK to store the GV's name, rather than a malloc...
2006-03-05 Nicholas Clark Provide Perl_gv_name_set to replace LVALUE use of GvNAM...
2006-03-02 Andy Lester Non-null optimizations
2006-02-28 Steve Hay Silence a VC++ warning with DEBUGGING builds
2006-02-27 Nicholas Clark In Perl_sv_setsv_flags, swap the default in the type...
2006-02-27 Steve Hay Silence a VC++ warning
2006-02-27 Nicholas Clark There is now the potential for an upgrade from somethin...
2006-02-27 Rafael Garcia-Suarez ptr_table_find() is only defined with ithreads
2006-02-27 H.Merijn Brand Workaround for initialization errors on HP's pre-compiler
2006-02-27 Andy Lester Speedups and shrinkages of SvREFCNT_inc
2006-02-25 Nicholas Clark Amazingly, it seems that none of the other GV specific...
2006-02-25 Nicholas Clark Store GvGP in the SV head union. For all the common...
2006-02-24 Nicholas Clark Avoid special case SvMAGIC macros just to cope with...
2006-02-24 Nicholas Clark Use PVMGs rather than PVGVs to store the names of our...
2006-02-24 Nicholas Clark Store the stash for our in the magic slot. This will...
2006-02-24 Andy Lester unused context warnings
2006-02-23 Nicholas Clark Replace direct flags tests ...
2006-02-23 Nicholas Clark We have sufficient spare bits to store the SV type...
2006-02-23 Nicholas Clark Shrink struct body_details and hence sv.o slightly...
2006-02-23 Nicholas Clark Using U8 rather than size type shrinks the body_details...
2006-02-23 Nicholas Clark Remove set magic from typeglobs. Remove typeglob magic...
2006-02-23 Nicholas Clark Recalculate dstr in Perl_sv_setsv_flags, as dstr may...
2006-02-23 Nicholas Clark Remove un-needed case in Perl_sv_setsv_flags (sv_upgrad...
2006-02-23 Nicholas Clark Remove get magic from typeglobs. This means that PVGVs...
2006-02-23 Nicholas Clark Fix the copy sizes for PVFM and PVCV back to sanity.
2006-02-22 Nicholas Clark Change 24643 made the mistake of assuming that CvCONST...
2006-02-21 Nicholas Clark PL_body_arenas should be set to NULL when the interpret...
2006-02-20 Nicholas Clark Steal code from maint, and use PERL_ARENA_ROOTS_SIZE...
2006-02-20 Nicholas Clark PVCVs don't need XNVs either.
2006-02-20 Nicholas Clark PVFMs don't need CvDEPTH, and PVCVs don't use SvIVX...
2006-02-20 Nicholas Clark xcv_root and xcv_xsub can also be merged into a union...
2006-02-20 Nicholas Clark Add a new CvISXSUB() macro, for abstracting the test...
2006-02-20 Rafael Garcia-Suarez More NullXXX macro removal from Andy Lester
2006-02-19 Nicholas Clark Shave sizeof(NV) bytes from formats, by using the same...
2006-02-19 Nicholas Clark To make arithmetic on tainted dualvars work properly...
2006-02-19 Nicholas Clark SvROK(sv) will never be true when SvIOKp() or SvNOKp...
2006-02-18 Jim Cromie arena-rework : consolidated patch
2006-02-17 Jim Cromie The two whitespace changes from
2006-02-14 Nicholas Clark Back out change change 10214 (drop SVp_IOK from >>...
2006-02-14 Andy Lester Sun Studio lint patches
2006-02-13 Nicholas Clark Ensure that public I, N and P flags are off when SvTAIN...
2006-02-11 Nicholas Clark Coalesce 2 if blocks with duplicated conditions in...
2006-02-10 Steve Hay A better fix than 27148
2006-02-10 Steve Hay Fix the effects of 27136 on Win32 with DEBUGGING and...
2006-02-09 Andy Lester Trying my "remove the pTHXes" patch again
2006-02-06 Nicholas Clark Rename S_glob_assign to S_glob_assign_glob
2006-02-06 Nicholas Clark In Perl_sv_upgrade, the assignment to new_type_details...
2006-02-06 Nicholas Clark Remove a duplicate flag copy line from Perl_sv_setsv_flags.
2006-02-06 Nicholas Clark Fix bug #38439 - reference to typeglob assignment needs...
2006-02-05 Nicholas Clark Merge the PVCV case into the common code in S_pvgv_assign.
2006-02-05 Nicholas Clark Merge the PVAV and PVHV clauses into the common code...
2006-02-05 Nicholas Clark Merge the default case (GvSV) with the common code...
2006-02-05 Nicholas Clark Start to merge the 6 arms of S_pvgv_assign into one.
2006-02-05 Jim Cromie [patch] rework arenas - repair arenasets
2006-02-05 Nicholas Clark The message "Can't upgrade that kind of scalar" can...
2006-02-05 Nicholas Clark new_body_type doesn't need to subtract the offset,...
2006-02-05 Nicholas Clark Merge and refactor the PVAV and PVHV code in Perl_sv_up...
2006-02-05 Nicholas Clark Eliminate a croak we can't get to.
2006-02-04 Nicholas Clark bcc was issuing a warning about this line in Perl_sv_2c...
2006-02-04 Nicholas Clark Enhance PERL_TRACK_MEMPOOL so that it also emulates...
2006-02-04 Nicholas Clark Rejig the definition of ARENAS_PER_SET to maximise...
2006-02-04 Nicholas Clark Tweak arena sets to avoid assignment between different...
2006-02-04 Jim Cromie [patch] arena rework - arena sets
2006-02-03 Steven Schubiger Re: [PATCH] s/Null(gv|hv|sv)/NULL/g
2006-02-03 Steven Schubiger s/Nullcv/NULL/g
2006-02-02 Steven Schubiger Re: [PATCH] s/Null(av|ch)/NULL/g
2006-02-01 Nicholas Clark Since PERL_COPY_ON_WRITE became PERL_OLD_COPY_ON_WRITE...
2006-02-01 Nicholas Clark References can't have SVp_IOK or SVp_NOK set, so no...
2006-02-01 Nicholas Clark Correct my comment, so that it's actually useful. :-)
2006-02-01 Jim Cromie [patch] arena rework - unify arenaroots
2006-01-30 Nicholas Clark Assert that IVs and NVs can never be tainted.
2006-01-29 Nicholas Clark C compilers don't let you return void. Pay attention...
2006-01-28 Nicholas Clark Squeeze more flag manipulations together in sv_setsv_flags.
2006-01-28 Nicholas Clark Merge the IOK and NOK clauses together in sv_setsv_flags.
2006-01-28 Nicholas Clark The flags manipulation in sv_setsv_flags can be more...
2006-01-28 Nicholas Clark By changing SvVOK() from returning 0/1 to 0/pointer...
2006-01-28 Nicholas Clark Pull the other large chunk of PVGV assignment code...
2006-01-28 Nicholas Clark Remove goto glob_assign;
2006-01-28 Nicholas Clark Pull glob_assign out from sv_setsv_flags into a static...
2006-01-23 Rafael Garcia-Suarez Un-const magic virtual tables; this consting breaks...
2006-01-18 Steve Hay Change all NEWSV() to newSV() in the core and non-dual...
2006-01-10 Andy Lester It's the Barbie bus patch
2006-01-08 Jarkko Hietaniemi blead: format warnings
2006-01-06 Steve Peters Upgrade to version-0.52
2006-01-06 Jarkko Hietaniemi sprinkle dVAR
2006-01-04 Gisle Aas Make the new STR_WITH_LEN() affected compile under...
2006-01-04 Gisle Aas Get rid of a few more hardcoded string lengths.
2006-01-04 Gisle Aas Introduce the macros newSVpvs(str) and sv_catpvs(sv...
2006-01-03 Nicholas Clark If NV_ZERO_IS_ALLBITS_ZERO is not true, then it's impor...
2006-01-03 Dave Mitchell ithreads: SVs that were only on the tmps stack leaked
2006-01-02 Dave Mitchell stop DEBUG_LEAKING_SCALARS producing spurious memory...
2006-01-02 Jim Cromie [patch] comment grammar and indentation, spurious tab
2006-01-02 Rafael Garcia-Suarez Update copyrights for files modified in 2006
2006-01-01 Andy Lester Making 0 pointers to NULLs
2005-12-31 Dave Mitchell tidy index arrangements in new MY_CXT code
2005-12-30 Nicholas Clark Document why it's a bad plan to move the backreferences...
next