From 55eb21fc7f309938b913b34d8103436155c0ff03 Mon Sep 17 00:00:00 2001 From: Olivier Couet <Olivier.Couet@cern.ch> Date: Wed, 10 Nov 2010 09:03:10 +0000 Subject: [PATCH] - Fix coverity reports #23130 #23131 and #23132 git-svn-id: http://root.cern.ch/svn/root/trunk@36581 27541ba8-7e3a-0410-8455-c3a389f83636 --- hist/hist/src/TH2Poly.cxx | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/hist/hist/src/TH2Poly.cxx b/hist/hist/src/TH2Poly.cxx index 5bbd85d31ca..9d4b7116b4f 100644 --- a/hist/hist/src/TH2Poly.cxx +++ b/hist/hist/src/TH2Poly.cxx @@ -923,9 +923,7 @@ Bool_t TH2Poly::IsIntersectingPolygon(Int_t bn, Double_t *x, Double_t *y, // We now know that the points are in different x and y indices - Double_t *xcoord, *ycoord; - xcoord = new Double_t[3]; - ycoord = new Double_t[3]; + Double_t xcoord[3], ycoord[3]; xcoord[0] = x[counter]; xcoord[1] = x[counter + 1]; ycoord[0] = y[counter]; -- GitLab