[libdevel-cover-perl] 23/32: Fix a use of the wrong type of null constant.

Axel Beckert abe at deuxchevaux.org
Sun Apr 26 22:26:39 UTC 2015


This is an automated email from the git hooks/post-receive script.

abe pushed a commit to annotated tag v1.18
in repository libdevel-cover-perl.

commit b7d918f0750cc8cb9c5406caf313faed32ff1694
Author: Paul Johnson <paul at pjcj.net>
Date:   Thu Mar 26 00:19:26 2015 +0100

    Fix a use of the wrong type of null constant.
    
    Patch from Zefram (RT #103102).
---
 Changes      |  3 ++-
 Contributors | 11 +++++++----
 Cover.xs     |  2 +-
 3 files changed, 10 insertions(+), 6 deletions(-)

diff --git a/Changes b/Changes
index a836ddb..dca52d3 100644
--- a/Changes
+++ b/Changes
@@ -1,7 +1,8 @@
 Devel::Cover history
 
 {{$NEXT}}
- - Remove dependency on CGI (use HTML::Entities instead)
+ - Remove dependency on CGI (use HTML::Entities instead) (Lee Johnson).
+ - Fix a use of the wrong type of null constant (Zefram) (RT #103102).
 
 Release 1.17 - 20 September 2014
  - Get cpancover to release quality.
diff --git a/Contributors b/Contributors
index 248ddef..505e790 100644
--- a/Contributors
+++ b/Contributors
@@ -19,11 +19,12 @@ Christian Walde                walde.christian at gmail.com
 cono                           https://github.com/cono
 Curtis Jewell                  csjewell at cpan.org
 Daisuke Maki                   dmaki at cpan.org
+Daniel Coupal                  dcoupal at cisco.com
+Daniel Perrett                 perrettdl at googlemail.com
 Dave Rolsky                    autarch at urth.org
 David Cantrell                 david at cantrell.org.uk
-David Steinbrunner             dsteinbrunner at pobox.com
 David E. Wheeler               david at justatheory.com
-Daniel Coupal                  dcoupal at cisco.com
+David Steinbrunner             dsteinbrunner at pobox.com
 Denis Howe                     denis.howe at gmail.com
 Dinis Rebolo                   dinisrebolo at gmail.com
 Dominic Mitchell               dom at happygiraffe.net
@@ -37,18 +38,19 @@ Gregor Herrmann                gregoa at debian.org
 Guillaume Aubert               aubertg at cpan.org
 Heikki J Laaksonen             heikki.j.laaksonen at kolumbus.fi
 H.Merijn Brand                 h.m.brand at xs4all.nl
+James E Keenan                 jkeenan at cpan.org
 Jeff Wren                      jeffrey.wren at paradigm-works.com
 Jim Cromie                     jcromie at cpan.org
-James E Keenan                 jkeenan at cpan.org
 John Lightsey                  jd at cpanel.net
 John LoVerso                   jloverso at mathworks.com
 Jonathan "Duke" Leto           jonathan at leto.net
 Kan Fushihara                  kan.fushihara at gmail.com
-Kent Fredric                   kentfredric at gmail.com
 Keith Wissing
+Kent Fredric                   kentfredric at gmail.com
 Kirk Kimmel                    kimmel at cpan.org
 Larry Leszczynski              larryl at cpan.org
 Lasse Makholm                  lasse at unity3d.com
+Lee Johnson                    lee at givengain.ch
 Léon Brocard                   acme at astray.com
 Marcel Grünauer                marcel at cpan.org
 Mark Stosberg                  mark at summersault.com
@@ -83,6 +85,7 @@ Tatsuhiko Miyagawa             miyagawa at bulknews.net
 Thomas Dorner                  dorner (AT) cpan.org
 Vadim O. Ustiansky             ustiansky at cpan.org
 Xavier Caron                   xcaron at gmail.com
+Zefram                         zefram at fysh.org
 
 
 If you should be on this list and I have overlooked your contribution, please
diff --git a/Cover.xs b/Cover.xs
index 00731ce..e26bc1d 100644
--- a/Cover.xs
+++ b/Cover.xs
@@ -622,7 +622,7 @@ static OP *find_skipped_conditional(pTHX_ OP *o) {
         return NULL;
 
     OP *next = right->op_next;
-    while (next && next->op_type == NULL)
+    while (next && next->op_type == OP_NULL)
         next = next->op_next;
 
     if (!next)

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-perl/packages/libdevel-cover-perl.git



More information about the Pkg-perl-cvs-commits mailing list