[haiku-commits] haiku: hrev53751 - headers/libs/agg

  • From: waddlesplash <waddlesplash@xxxxxxxxx>
  • To: haiku-commits@xxxxxxxxxxxxx
  • Date: Tue, 21 Jan 2020 19:30:03 -0500 (EST)

hrev53751 adds 1 changeset to branch 'master'
old head: 450f71e21e9565fda09170e7ac53ea16d5c241f5
new head: 1773f0767ed809a3c64ccc0c1037f3c8a1d5de33
overview: 
https://git.haiku-os.org/haiku/log/?qt=range&q=1773f0767ed8+%5E450f71e21e95

----------------------------------------------------------------------------

1773f0767ed8: agg: agg_curves.h: initialize m_distance_tolerance_square
  
  fix PVS 730
  
  Change-Id: I8dfe11d3f31cc6ef67b96955009c5a57eb5a427d
  Reviewed-on: https://review.haiku-os.org/c/haiku/+/1997
  Reviewed-by: waddlesplash <waddlesplash@xxxxxxxxx>

                                          [ Ra-V2 <rav.bernacki@xxxxxxxxx> ]

----------------------------------------------------------------------------

Revision:    hrev53751
Commit:      1773f0767ed809a3c64ccc0c1037f3c8a1d5de33
URL:         https://git.haiku-os.org/haiku/commit/?id=1773f0767ed8
Author:      Ra-V2 <rav.bernacki@xxxxxxxxx>
Date:        Sun Dec  8 01:33:51 2019 UTC
Committer:   waddlesplash <waddlesplash@xxxxxxxxx>
Commit-Date: Wed Jan 22 00:29:58 2020 UTC

----------------------------------------------------------------------------

1 file changed, 4 insertions(+), 2 deletions(-)
headers/libs/agg/agg_curves.h | 6 ++++--

----------------------------------------------------------------------------

diff --git a/headers/libs/agg/agg_curves.h b/headers/libs/agg/agg_curves.h
index 1ef02e8783..7962543c66 100644
--- a/headers/libs/agg/agg_curves.h
+++ b/headers/libs/agg/agg_curves.h
@@ -97,7 +97,8 @@ namespace agg
         curve3_div() : 
             m_approximation_scale(1.0),
             m_angle_tolerance(0.0),
-            m_count(0)
+            m_count(0),
+            m_distance_tolerance_square(0.0)
         {}
 
         curve3_div(double x1, double y1, 
@@ -378,7 +379,8 @@ namespace agg
             m_approximation_scale(1.0),
             m_angle_tolerance(0.0),
             m_cusp_limit(0.0),
-            m_count(0)
+            m_count(0),
+            m_distance_tolerance_square(0.0)
         {}
 
         curve4_div(double x1, double y1, 


Other related posts:

  • » [haiku-commits] haiku: hrev53751 - headers/libs/agg - waddlesplash