Description: Always initialize StarTrace::tmin_ and tmax_ tmin_ and
 tmax_ where not always initialized which led to unpredictable
 behavior in particular in an MPI context.
Author: Thibaut Paumard <thibaut@debian.org>
Origin: upstream
Bug-Debian: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=994784
Applied-Upstream: e1157d168d7f1ae2b1f3ab40a235d2128ab4e25c
Last-Update: 2021-10-16
---
This patch header follows DEP-3: http://dep.debian.net/deps/dep3/
--- a/lib/StarTrace.C
+++ b/lib/StarTrace.C
@@ -42,7 +42,7 @@
 		      "Date defining end of the trace (geometrical_time).")
 GYOTO_PROPERTY_END(StarTrace, Star::properties)
 
-StarTrace::StarTrace() : Star()
+StarTrace::StarTrace() : Star(), tmin_(0.), tmax_(0.)
 {
   Generic::kind_="StarTrace";
   xAllocateXYZ();
