* gettext-tools/src/sentence.c (sentence_end): Assign initial values to
local variables to suppress compiler warnings with
-Wmaybe-uninitialized. This shouldn't address any real bug.
+2015-10-06 Daiki Ueno <ueno@gnu.org>
+
+ * sentence.c (sentence_end): Assign initial values to local
+ variables to suppress compiler warnings with
+ -Wmaybe-uninitialized. This shouldn't address any real bug.
+
2015-09-11 Daiki Ueno <ueno@gnu.org>
* gettext 0.19.6 released.
ucs4_t ending_char = 0xfffd;
/* Possible starting position of the match, and the next starting
position if the current match fails. */
- const char *match_start, *match_next;
+ const char *match_start = NULL, *match_next = NULL;
/* Number of spaces. */
- int spaces;
+ int spaces = 0;
while (str <= str_limit)
{