2006-04-15 |
Nicholas Clark |
$foo .= $bar doesn't warn if $foo is undefined, so... |
commit | commitdiff | tree | snapshot |
2006-04-15 |
Nicholas Clark |
If the downstream caller wants block mode, and we're... |
commit | commitdiff | tree | snapshot |
2006-04-15 |
Nicholas Clark |
Eliminate the filter_child_proc hack from pp_require. |
commit | commitdiff | tree | snapshot |
2006-04-15 |
Nicholas Clark |
If you return void from a filter subroutine, the caller... |
commit | commitdiff | tree | snapshot |
2006-04-15 |
Nicholas Clark |
Tests for having multiple pipes open simultaneously. |
commit | commitdiff | tree | snapshot |
2006-04-15 |
Nicholas Clark |
Add more tests for the builtin source filter implementa... |
commit | commitdiff | tree | snapshot |
2006-04-15 |
Nicholas Clark |
Add a test for source filters returned from code refere... |
commit | commitdiff | tree | snapshot |
2006-04-15 |
Nicholas Clark |
Bump the expect file count in readdir.t. We keep writin... |
commit | commitdiff | tree | snapshot |
2006-04-15 |
Jarkko Hietaniemi |
perlio.c: layer data might be allocated and unused... |
commit | commitdiff | tree | snapshot |
2006-04-15 |
juna |
Fix bug in prime_env_iter where the terms of a comparis... |
commit | commitdiff | tree | snapshot |
2006-04-15 |
Craig A. Berry |
Honor READALL privilege in cando_by_name (from Scott |
commit | commitdiff | tree | snapshot |
2006-04-15 |
Craig A. Berry |
Don't die after SS$_NOPRIV in Perl_vmssetenv, courtesy |
commit | commitdiff | tree | snapshot |
2006-04-14 |
Nicholas Clark |
Change SAVECOPWARNINGS(c) to SAVECOMPILEWARNINGS()... |
commit | commitdiff | tree | snapshot |
2006-04-14 |
Nicholas Clark |
In the description of require, clarify the file handle... |
commit | commitdiff | tree | snapshot |
2006-04-14 |
Nicholas Clark |
S_glob_2inpuv() did not check if lenp was NULL. Oops. |
commit | commitdiff | tree | snapshot |
2006-04-14 |
Nicholas Clark |
Replace explict "/dev/null" with BIT_BUCKET, which... |
commit | commitdiff | tree | snapshot |
2006-04-14 |
Jarkko Hietaniemi |
doop.c: (Coverity) found a bug but not quite what Cover... |
commit | commitdiff | tree | snapshot |
2006-04-14 |
Nicholas Clark |
Mark new_warnings_bitfield as XE, and add it to __DATA_... |
commit | commitdiff | tree | snapshot |
2006-04-14 |
Paul Marquess |
IO::Compress::* |
commit | commitdiff | tree | snapshot |
2006-04-14 |
Jarkko Hietaniemi |
perlio.c: (Coverity) eliminate temp ptr that confuses... |
commit | commitdiff | tree | snapshot |
2006-04-14 |
Steve Peters |
Reverting change #27791 which may cause corruption... |
commit | commitdiff | tree | snapshot |
2006-04-14 |
Jerry D. Hedden |
Fix implementation of threads->_handle on unixes. |
commit | commitdiff | tree | snapshot |
2006-04-13 |
Nicholas Clark |
(Hopefully) fix coredumps in ByteLoader, which were... |
commit | commitdiff | tree | snapshot |
2006-04-13 |
Dave Mitchell |
eliminate PL_regbol PL_regtill PL_regnarrate PL_reg_gan... |
commit | commitdiff | tree | snapshot |
2006-04-13 |
Dave Mitchell |
disable 'split /(?{ split "" })/' test until recursive... |
commit | commitdiff | tree | snapshot |
2006-04-13 |
Nicholas Clark |
Remove SAVEt_FREESHAREDPV, as nothing is using it,... |
commit | commitdiff | tree | snapshot |
2006-04-13 |
Steve Peters |
Add another NULL check thanks to Coverity. |
commit | commitdiff | tree | snapshot |
2006-04-13 |
Nicholas Clark |
For duping SAVEHINTS it rather helps if you pay attenti... |
commit | commitdiff | tree | snapshot |
2006-04-13 |
Jarkko Hietaniemi |
regexec.c: (Coverity) add NULL check |
commit | commitdiff | tree | snapshot |
2006-04-13 |
Jarkko Hietaniemi |
regexec.c: (Coverity) move NULL check even earlier |
commit | commitdiff | tree | snapshot |
2006-04-13 |
Nicholas Clark |
Add a break; to the end of the SAVEt_COP_WARNINGS case... |
commit | commitdiff | tree | snapshot |
2006-04-13 |
Nicholas Clark |
Fix B and ByteLoader to cope with cop_warnings no longe... |
commit | commitdiff | tree | snapshot |
2006-04-13 |
Nicholas Clark |
Add SAVEt_COP_WARNINGS to ss_dup. |
commit | commitdiff | tree | snapshot |
2006-04-13 |
Steve Hay |
Re: [PATCH] add pTHX_ parameter to new_warnings_bitfield() |
commit | commitdiff | tree | snapshot |
2006-04-13 |
Dave Mitchell |
eliminate PL_reg_re |
commit | commitdiff | tree | snapshot |
2006-04-12 |
Animator |
[perl #38906] Regex engine does not release MINMOD |
commit | commitdiff | tree | snapshot |
2006-04-12 |
Nicholas Clark |
D'oh! Don't try to do #ifdefs inside "functions" that... |
commit | commitdiff | tree | snapshot |
2006-04-12 |
Nicholas Clark |
Add tests for all the other types that %^H serialisatio... |
commit | commitdiff | tree | snapshot |
2006-04-12 |
Nicholas Clark |
Change cop_warnings from an SV holding the warnings... |
commit | commitdiff | tree | snapshot |
2006-04-12 |
Dave Mitchell |
Remove the final recursion path from S_regmatch: ... |
commit | commitdiff | tree | snapshot |
2006-04-12 |
Nicholas Clark |
Test that we can do embedded 0 bytes in hints. |
commit | commitdiff | tree | snapshot |
2006-04-12 |
Nicholas Clark |
Store cop_hints as a shared structure without using... |
commit | commitdiff | tree | snapshot |
2006-04-12 |
Nicholas Clark |
Remove Perl_refcounted_he_copy and Perl_refcounted_he_dup. |
commit | commitdiff | tree | snapshot |
2006-04-12 |
Nicholas Clark |
Newxz() can use calloc() rather than malloc(), as the... |
commit | commitdiff | tree | snapshot |
2006-04-12 |
Nicholas Clark |
As OPs are shared between threads, they should be using |
commit | commitdiff | tree | snapshot |
2006-04-11 |
Jarkko Hietaniemi |
regexec.c: move NULL check earlier to make Coverity... |
commit | commitdiff | tree | snapshot |
2006-04-11 |
Jarkko Hietaniemi |
regcomp.c (try II): use ... |
commit | commitdiff | tree | snapshot |
2006-04-11 |
Jarkko Hietaniemi |
perlio.c: false Coverity finding (it cannot see that... |
commit | commitdiff | tree | snapshot |
2006-04-11 |
Jarkko Hietaniemi |
locale.c: more Safefree() (Coverity finding) |
commit | commitdiff | tree | snapshot |
2006-04-11 |
Nicholas Clark |
First stab at using the pad to store the serialised... |
commit | commitdiff | tree | snapshot |
2006-04-11 |
Nicholas Clark |
Within Perl_newSVhek, inline most of newSVpvn_share... |
commit | commitdiff | tree | snapshot |
2006-04-11 |
Nicholas Clark |
Stop Perl_newSVpvn_share() potentially leaking the... |
commit | commitdiff | tree | snapshot |
2006-04-11 |
Nicholas Clark |
Need to migrate the refcounted_he structure to be prope... |
commit | commitdiff | tree | snapshot |
2006-04-11 |
Andy Lester |
Quiet a coverity problem |
commit | commitdiff | tree | snapshot |
2006-04-10 |
Nicholas Clark |
All S_dumpuntil()'s regnode pointer arguments can be... |
commit | commitdiff | tree | snapshot |
2006-04-10 |
Nicholas Clark |
Perl_unsharepvn() was no longer being used in core... |
commit | commitdiff | tree | snapshot |
2006-04-10 |
H.Merijn Brand |
config_H being the last part of my mkglossary work |
commit | commitdiff | tree | snapshot |
2006-04-10 |
H.Merijn Brand |
Regeneration of Glossary and the underlying tools. |
commit | commitdiff | tree | snapshot |
2006-04-10 |
Andy Dougherty |
Fix coverity warning in utf8.c |
commit | commitdiff | tree | snapshot |
2006-04-10 |
Jarkko Hietaniemi |
pp_sys.c: some Coverity findings: NULL guards for format cv |
commit | commitdiff | tree | snapshot |
2006-04-10 |
Jarkko Hietaniemi |
pp_sys.c: some Coverity findings: NULL guards for io... |
commit | commitdiff | tree | snapshot |
2006-04-10 |
Jarkko Hietaniemi |
es: quiet some warnings (with a free AIX cpp insanity... |
commit | commitdiff | tree | snapshot |
2006-04-10 |
Andy Lester |
True consting goodness in regexes |
commit | commitdiff | tree | snapshot |
2006-04-09 |
Nicholas Clark |
Fix pointer error in change 27741, spotted by John... |
commit | commitdiff | tree | snapshot |
2006-04-09 |
Jarkko Hietaniemi |
Re: [PATCH] perlio.c: Coverity finding: finding false... |
commit | commitdiff | tree | snapshot |
2006-04-09 |
Jarkko Hietaniemi |
Re: [PATCH] locale.c: Coverity finding |
commit | commitdiff | tree | snapshot |
2006-04-09 |
Andy Lester |
Rename variables in some mg_* funcs |
commit | commitdiff | tree | snapshot |
2006-04-08 |
Dave Mitchell |
fix potential null deref introduced by change #27716 |
commit | commitdiff | tree | snapshot |
2006-04-08 |
Jarkko Hietaniemi |
perlio.c: Coverity finding: finding false (Coverity... |
commit | commitdiff | tree | snapshot |
2006-04-08 |
Jarkko Hietaniemi |
sv.c, rs.t, perlvar.pod (Coverity finding: did you... |
commit | commitdiff | tree | snapshot |
2006-04-08 |
Nicholas Clark |
As av_dup, gv_dup and hv_dup are the same as sv_dup... |
commit | commitdiff | tree | snapshot |
2006-04-08 |
Nicholas Clark |
By swapping the order of pushes onto the save stack for |
commit | commitdiff | tree | snapshot |
2006-04-08 |
Nicholas Clark |
Teach ss_dup about SAVEt_RE_STATE. (As correctly as... |
commit | commitdiff | tree | snapshot |
2006-04-08 |
Nicholas Clark |
ss_dup of SAVEt_COP_ARYBASE can use the same code as... |
commit | commitdiff | tree | snapshot |
2006-04-07 |
Nicholas Clark |
Give more information in the panic in ss_dup. (Although... |
commit | commitdiff | tree | snapshot |
2006-04-07 |
Gisle Aas |
Make perl_fini() run when compiling perl with |
commit | commitdiff | tree | snapshot |
2006-04-07 |
Steve Hay |
Patch from Jarkko to fix breakage caused by change... |
commit | commitdiff | tree | snapshot |
2006-04-07 |
Nicholas Clark |
Oops. Being too terse for my own good - it's not a... |
commit | commitdiff | tree | snapshot |
2006-04-07 |
John E. Malmberg |
[patch@27694] VMS RMSEXPAND/PERL_CANDO fixes |
commit | commitdiff | tree | snapshot |
2006-04-06 |
Nicholas Clark |
Move all the regexp state variables into a single struc... |
commit | commitdiff | tree | snapshot |
2006-04-06 |
Rafael Garcia... |
Re: Smoke [5.9.4] 27728 FAIL(F) MSWin32 WinXP/.Net... |
commit | commitdiff | tree | snapshot |
2006-04-06 |
Steve Hay |
Fix skip count in ext\B\t\lint.t |
commit | commitdiff | tree | snapshot |
2006-04-05 |
Nicholas Clark |
Save the regexp engine state as 1 block on the save... |
commit | commitdiff | tree | snapshot |
2006-04-05 |
Joshua ben... |
Re: expr foreach (...) isn't a B::Lint warning anymore |
commit | commitdiff | tree | snapshot |
2006-04-05 |
Nicholas Clark |
Perl_save_alloc can use the new(er) SSGROW rather than... |
commit | commitdiff | tree | snapshot |
2006-04-05 |
Rafael Garcia... |
Assigning undef to an entry in %ENV shouldn't produce... |
commit | commitdiff | tree | snapshot |
2006-04-05 |
Steve Peters |
Try not to use negative values when accessing arrays... |
commit | commitdiff | tree | snapshot |
2006-04-05 |
Steve Peters |
Initializing variables is good. This is another Coveri... |
commit | commitdiff | tree | snapshot |
2006-04-05 |
Alan Burlison |
perlio.c breaks on Solaris/gcc when > 256 FDs are available |
commit | commitdiff | tree | snapshot |
2006-04-05 |
Rafael Garcia... |
There should be only one META.yml file |
commit | commitdiff | tree | snapshot |
2006-04-05 |
SADAHIRO Tomoyuki |
Fix test portability on non-ASCII platforms |
commit | commitdiff | tree | snapshot |
2006-04-05 |
Steve Peters |
Document the functions htmlify() and anchorify() in... |
commit | commitdiff | tree | snapshot |
2006-04-05 |
Steve Hay |
Simplify tests for fork() capabilities |
commit | commitdiff | tree | snapshot |
2006-04-05 |
Dave Mitchell |
(??{...}) didn't always restore PL_reg_re. |
commit | commitdiff | tree | snapshot |
2006-04-05 |
Dave Mitchell |
eliminate PL_regprecomp, PL_regprogram, PL_regnpar... |
commit | commitdiff | tree | snapshot |
2006-04-05 |
Dave Mitchell |
restructure the EVAL branch of regmatch() to minimise... |
commit | commitdiff | tree | snapshot |
2006-04-04 |
Jim Cromie |
Re: Making IO::Socket pass test on Win32 |
commit | commitdiff | tree | snapshot |
2006-04-04 |
Rafael Garcia... |
FEATURE_IS_ENABLED takes only one parameter now, so... |
commit | commitdiff | tree | snapshot |
2006-04-04 |
Jan Dubois |
threads.pm should overload != operator |
commit | commitdiff | tree | snapshot |
2006-04-04 |
Rafael Garcia... |
Fix syntax error in io_pipe test |
commit | commitdiff | tree | snapshot |
next |