Description: uninitialized vars
 Clear up some uninitialized variable warnings in the src/ directory.
 .
 gprolog (1.4.5-4) unstable; urgency=medium
 .
   * lintian-motivated fixes:
     - new manpage (bad whatis entry)
     - correct source URL in copyright file
     - don't install COPYING file
   * fix several uninitialized variable warnings (in src/ subdirs)
Author: Salvador Abreu <spa@debian.org>

---
The information above should follow the Patch Tagging Guidelines, please
checkout http://dep.debian.net/deps/dep3/ to learn about the format. Here
are templates for supplementary fields that you might want to add:

Origin: <vendor|upstream|other>, <url of original patch>
Bug: <url in upstream bugtracker>
Bug-Debian: https://bugs.debian.org/<bugnumber>
Bug-Ubuntu: https://launchpad.net/bugs/<bugnumber>
Forwarded: <no|not-needed|url proving that it has been forwarded>
Reviewed-By: <name and email of someone who approved the patch>
Last-Update: 2016-12-10

--- a/src/BipsPl/debugger_c.c
+++ b/src/BipsPl/debugger_c.c
@@ -669,7 +669,7 @@ Environment(void)
 {
   WamWord *adr;
   int offset;
-  char *stack_name;
+  char *stack_name = 0;
   int i;
 
   if (nb_read_arg == 1)
@@ -709,7 +709,7 @@ Backtrack(void)
 {
   WamWord *adr;
   int offset;
-  char *stack_name;
+  char *stack_name = 0;
   int i;
   PredInf *pred;
   int func, arity;
--- a/src/BipsPl/parse_supp.c
+++ b/src/BipsPl/parse_supp.c
@@ -301,7 +301,7 @@ Parse_Term(int cur_prec, int context, Bo
   int cur_left = 0;
   int i;
   int flag_value;
-  WamWord term, term1;
+  WamWord term = 0, term1 = 0;
   WamWord w[2];
   Bool left_is_op = FALSE;
 
@@ -611,7 +611,7 @@ static WamWord
 Parse_List(Bool can_be_empty)
 {
   WamWord term;
-  WamWord car_word, cdr_word = 0; /* init for the compiler */
+  WamWord car_word = 0, cdr_word = 0; /* init for the compiler */
 
 
   car_word = Parse_Term(MAX_ARG_OF_FUNCTOR_PREC, GENERAL_TERM, TRUE);
--- a/src/BipsPl/stream_c.c
+++ b/src/BipsPl/stream_c.c
@@ -758,7 +758,7 @@ Bool
 Pl_Stream_Prop_Type_2(WamWord type_word, WamWord stm_word)
 {
   int stm;
-  int atom;
+  int atom = 0;
 
   stm = Pl_Rd_Integer_Check(stm_word);	/* stm is a valid stream entry */
 
@@ -778,7 +778,7 @@ Bool
 Pl_Stream_Prop_Reposition_2(WamWord reposition_word, WamWord stm_word)
 {
   int stm;
-  int atom;
+  int atom = 0;
 
   stm = Pl_Rd_Integer_Check(stm_word);	/* stm is a valid stream entry */
 
--- a/src/configure.in
+++ b/src/configure.in
@@ -947,6 +947,7 @@ dnl ******************
 
 if test "$IN_PLACE" = no; then
     TXT_FILES='README COPYING VERSION NEWS ChangeLog gprolog.ico'
+    TXT_FILES='README VERSION NEWS ChangeLog gprolog.ico'
 else
     TXT_FILES=
 fi
