From bba8634c057e1c3ab21680e7c8c6f434c7629381 Mon Sep 17 00:00:00 2001
From: Victor Zverovich <victor.zverovich@gmail.com>
Date: Sat, 29 Sep 2012 17:18:07 -0700
Subject: [PATCH] Initialize the gsl_sf_result_e10 objects.

---
 specfunc/hyperg_U.c |    4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/specfunc/hyperg_U.c b/specfunc/hyperg_U.c
index 7137a7e..92e31c6 100644
--- a/specfunc/hyperg_U.c
+++ b/specfunc/hyperg_U.c
@@ -1714,7 +1714,7 @@ gsl_sf_hyperg_U_e10_e(const double a, const double b, const double x,
 int
 gsl_sf_hyperg_U_int_e(const int a, const int b, const double x, gsl_sf_result * result)
 {
-  gsl_sf_result_e10 re;
+  gsl_sf_result_e10 re = {0};
   int stat_U = gsl_sf_hyperg_U_int_e10_e(a, b, x, &re);
   int stat_c = gsl_sf_result_smash_e(&re, result);
   return GSL_ERROR_SELECT_2(stat_c, stat_U);
@@ -1724,7 +1724,7 @@ gsl_sf_hyperg_U_int_e(const int a, const int b, const double x, gsl_sf_result *
 int
 gsl_sf_hyperg_U_e(const double a, const double b, const double x, gsl_sf_result * result)
 {
-  gsl_sf_result_e10 re;
+  gsl_sf_result_e10 re = {0};
   int stat_U = gsl_sf_hyperg_U_e10_e(a, b, x, &re);
   int stat_c = gsl_sf_result_smash_e(&re, result);
   return GSL_ERROR_SELECT_2(stat_c, stat_U);
-- 
1.7.9.5

