summaryrefslogtreecommitdiff
path: root/pango/glyphstring.c
diff options
context:
space:
mode:
authorBehdad Esfahbod <behdad@gnome.org>2006-02-21 10:12:02 +0000
committerBehdad Esfahbod <behdad@src.gnome.org>2006-02-21 10:12:02 +0000
commit64691f1398152413f91ebe6906806eb9eb8801b1 (patch)
tree31b205b6594685a7b24de8acb7b23d4b94f7a48b /pango/glyphstring.c
parenta8f4e10b37a927543dfebe1a37a4d33463a209fc (diff)
downloadpango-64691f1398152413f91ebe6906806eb9eb8801b1.tar.gz
Change g_critical to g_warning. We already handle them gracefully.
2006-02-21 Behdad Esfahbod <behdad@gnome.org> * pango/fonts.c, pango/glyphstring.c, pango/pango-fontmap.c, pango/pango-ot-buffer.c, pango/pangocairo-font.c, pango/pangoft2.c, pango/pangoxft-font.c, pango/shape.c: Change g_critical to g_warning. We already handle them gracefully. Bug 331994 – --disable-debug removes G_DISABLE_CAST_CHECKS Patch from charlet@act-europe.fr * configure.in: Do not lose PANGO_DEBUG_FLAGS when reassigning. Bug 331995 – pango_layout_set_text optimization Patch from charlet@act-europe.fr * pango/pango-layout.c: Do not validate input text if asserts are disabled. Moreover, do not truncate input text on invalid sequence. Bug 331996 – avoid crashes in win32 font handling Patch from charlet@act-europe.fr * pango/pangofc-fontmap.c, pango/pangowin32-fontmap.c, pango/pangowin32.c: if (!font) return NULL in a number of places.
Diffstat (limited to 'pango/glyphstring.c')
-rw-r--r--pango/glyphstring.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/pango/glyphstring.c b/pango/glyphstring.c
index fc677c3a..e28abbd0 100644
--- a/pango/glyphstring.c
+++ b/pango/glyphstring.c
@@ -67,7 +67,7 @@ pango_glyph_string_set_size (PangoGlyphString *string, gint new_len)
if (string->space < 0)
{
- g_critical ("glyph string length overflows maximum integer size, truncated");
+ g_warning ("glyph string length overflows maximum integer size, truncated");
new_len = string->space = G_MAXINT - 8;
}
}