diff options
author | Owen Taylor <otaylor@redhat.com> | 2003-05-02 18:23:39 +0000 |
---|---|---|
committer | Owen Taylor <otaylor@src.gnome.org> | 2003-05-02 18:23:39 +0000 |
commit | e4916dc98bb89b57a6dd3b68d2b54168bb44e8fe (patch) | |
tree | 5c1544997634be93b48887610d621657fd066a86 /pango/pango-layout.c | |
parent | 10b3e270ec190a0c67595d6dd43fada191a9c25e (diff) | |
download | pango-e4916dc98bb89b57a6dd3b68d2b54168bb44e8fe.tar.gz |
Fix a harmless uninitialized memory read. (#109625, Rich Burridge)
Fri May 2 14:21:20 2003 Owen Taylor <otaylor@redhat.com>
* pango/pango-layout.c (update_run): Fix a harmless
uninitialized memory read. (#109625, Rich Burridge)
Diffstat (limited to 'pango/pango-layout.c')
-rw-r--r-- | pango/pango-layout.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/pango/pango-layout.c b/pango/pango-layout.c index ce484f90..c1258628 100644 --- a/pango/pango-layout.c +++ b/pango/pango-layout.c @@ -3977,7 +3977,6 @@ static void update_run (PangoLayoutIter *iter, int run_start_index) { - int old_run_width; Extents *line_ext; line_ext = (Extents*)iter->line_extents_link->data; |