Skip to content
Snippets Groups Projects
Commit 1ec21255 authored by Olivier Couet's avatar Olivier Couet
Browse files

- Fix coverity #11176: UNINIT_CTOR

git-svn-id: http://root.cern.ch/svn/root/trunk@37753 27541ba8-7e3a-0410-8455-c3a389f83636
parent 79be9bcd
Branches
Tags
No related merge requests found
...@@ -152,6 +152,8 @@ TPolyLine::TPolyLine(const TPolyLine &polyline) : TObject(polyline), TAttLine(po ...@@ -152,6 +152,8 @@ TPolyLine::TPolyLine(const TPolyLine &polyline) : TObject(polyline), TAttLine(po
// PolyLine copy constructor. // PolyLine copy constructor.
fN = 0; fN = 0;
fX = 0;
fY = 0;
fLastPoint = -1; fLastPoint = -1;
((TPolyLine&)polyline).Copy(*this); ((TPolyLine&)polyline).Copy(*this);
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment