summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorOwen Taylor <otaylor@redhat.com>2002-03-20 20:18:50 +0000
committerOwen Taylor <otaylor@src.gnome.org>2002-03-20 20:18:50 +0000
commitd1ac642976eebe752aa9825d50b049b2b7754491 (patch)
tree4a0511e6a1c01140add4c1a28eddbc68906abf75
parente74e8dd104a88fcecac3ddc40f30f291a052d739 (diff)
downloadpango-d1ac642976eebe752aa9825d50b049b2b7754491.tar.gz
Dummy-initialize gsize variable to 0, not -1. (#73899, Erwann Chenede)
Wed Mar 20 15:14:15 2002 Owen Taylor <otaylor@redhat.com> * pango/pango-markup.c (text_handler): Dummy-initialize gsize variable to 0, not -1. (#73899, Erwann Chenede)
-rw-r--r--ChangeLog5
-rw-r--r--ChangeLog.pre-1-105
-rw-r--r--ChangeLog.pre-1-25
-rw-r--r--ChangeLog.pre-1-45
-rw-r--r--ChangeLog.pre-1-65
-rw-r--r--ChangeLog.pre-1-85
-rw-r--r--pango/pango-markup.c2
7 files changed, 31 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index c031ae4a..0609d1f8 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+Wed Mar 20 15:14:15 2002 Owen Taylor <otaylor@redhat.com>
+
+ * pango/pango-markup.c (text_handler): Dummy-initialize
+ gsize variable to 0, not -1. (#73899, Erwann Chenede)
+
Wed Mar 20 14:57:48 2002 Owen Taylor <otaylor@redhat.com>
* modules/basic/basic-x.c modules/basic/tables-{big,small}.i:
diff --git a/ChangeLog.pre-1-10 b/ChangeLog.pre-1-10
index c031ae4a..0609d1f8 100644
--- a/ChangeLog.pre-1-10
+++ b/ChangeLog.pre-1-10
@@ -1,3 +1,8 @@
+Wed Mar 20 15:14:15 2002 Owen Taylor <otaylor@redhat.com>
+
+ * pango/pango-markup.c (text_handler): Dummy-initialize
+ gsize variable to 0, not -1. (#73899, Erwann Chenede)
+
Wed Mar 20 14:57:48 2002 Owen Taylor <otaylor@redhat.com>
* modules/basic/basic-x.c modules/basic/tables-{big,small}.i:
diff --git a/ChangeLog.pre-1-2 b/ChangeLog.pre-1-2
index c031ae4a..0609d1f8 100644
--- a/ChangeLog.pre-1-2
+++ b/ChangeLog.pre-1-2
@@ -1,3 +1,8 @@
+Wed Mar 20 15:14:15 2002 Owen Taylor <otaylor@redhat.com>
+
+ * pango/pango-markup.c (text_handler): Dummy-initialize
+ gsize variable to 0, not -1. (#73899, Erwann Chenede)
+
Wed Mar 20 14:57:48 2002 Owen Taylor <otaylor@redhat.com>
* modules/basic/basic-x.c modules/basic/tables-{big,small}.i:
diff --git a/ChangeLog.pre-1-4 b/ChangeLog.pre-1-4
index c031ae4a..0609d1f8 100644
--- a/ChangeLog.pre-1-4
+++ b/ChangeLog.pre-1-4
@@ -1,3 +1,8 @@
+Wed Mar 20 15:14:15 2002 Owen Taylor <otaylor@redhat.com>
+
+ * pango/pango-markup.c (text_handler): Dummy-initialize
+ gsize variable to 0, not -1. (#73899, Erwann Chenede)
+
Wed Mar 20 14:57:48 2002 Owen Taylor <otaylor@redhat.com>
* modules/basic/basic-x.c modules/basic/tables-{big,small}.i:
diff --git a/ChangeLog.pre-1-6 b/ChangeLog.pre-1-6
index c031ae4a..0609d1f8 100644
--- a/ChangeLog.pre-1-6
+++ b/ChangeLog.pre-1-6
@@ -1,3 +1,8 @@
+Wed Mar 20 15:14:15 2002 Owen Taylor <otaylor@redhat.com>
+
+ * pango/pango-markup.c (text_handler): Dummy-initialize
+ gsize variable to 0, not -1. (#73899, Erwann Chenede)
+
Wed Mar 20 14:57:48 2002 Owen Taylor <otaylor@redhat.com>
* modules/basic/basic-x.c modules/basic/tables-{big,small}.i:
diff --git a/ChangeLog.pre-1-8 b/ChangeLog.pre-1-8
index c031ae4a..0609d1f8 100644
--- a/ChangeLog.pre-1-8
+++ b/ChangeLog.pre-1-8
@@ -1,3 +1,8 @@
+Wed Mar 20 15:14:15 2002 Owen Taylor <otaylor@redhat.com>
+
+ * pango/pango-markup.c (text_handler): Dummy-initialize
+ gsize variable to 0, not -1. (#73899, Erwann Chenede)
+
Wed Mar 20 14:57:48 2002 Owen Taylor <otaylor@redhat.com>
* modules/basic/basic-x.c modules/basic/tables-{big,small}.i:
diff --git a/pango/pango-markup.c b/pango/pango-markup.c
index b2814468..23a88345 100644
--- a/pango/pango-markup.c
+++ b/pango/pango-markup.c
@@ -437,7 +437,7 @@ text_handler (GMarkupParseContext *context,
const gchar *range_end;
gboolean just_saw_marker;
gssize uline_index = -1;
- gsize uline_len = -1;
+ gsize uline_len = 0; /* Quiet GCC */
range_end = NULL;
range_start = text;