From: Nicholas Clark Date: Tue, 25 Apr 2006 12:51:40 +0000 (+0000) Subject: Coverity has started to notice another inconsistency in our NULL X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=6482a30d2bd2742fb2541ea75066fbd5044cc1f8;p=p5sagit%2Fp5-mst-13.2.git Coverity has started to notice another inconsistency in our NULL pointer checking. p4raw-id: //depot/perl@27959 --- diff --git a/pp_ctl.c b/pp_ctl.c index c3bc781..5e44789 100644 --- a/pp_ctl.c +++ b/pp_ctl.c @@ -2995,7 +2995,7 @@ S_doeval(pTHX_ int gimme, OP** startop, CV* outside, U32 seq) DEBUG_x(dump_eval()); /* Register with debugger: */ - if (PERLDB_INTER && saveop->op_type == OP_REQUIRE) { + if (PERLDB_INTER && saveop && saveop->op_type == OP_REQUIRE) { CV * const cv = get_cv("DB::postponed", FALSE); if (cv) { dSP;