This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Don't check the pointer is non-NULL before calling Safefree() in
authorNicholas Clark <nick@ccl4.org>
Sat, 2 Jul 2005 12:34:08 +0000 (12:34 +0000)
committerNicholas Clark <nick@ccl4.org>
Sat, 2 Jul 2005 12:34:08 +0000 (12:34 +0000)
commit43c5f42db1e336a99904bcc798b7070727bfbd0a
tree1e02933dfd6fac99b7933947f33451769fd8467e
parent0cf8ddea3351f0ff9eef736dfa13bc866d0d1f97
Don't check the pointer is non-NULL before calling Safefree() in
little used code, code used only once per run (such as interpreter
construction and destruction), and cases where the pointer nearly
never is NULL. Safefree does its own non-NULL check, and even that
isn't strictly necessary as all conformant free()s accept a NULL
pointer.

p4raw-id: //depot/perl@25045
doio.c
locale.c
mg.c
perl.c
perl.h
regcomp.c
sv.c
util.c