From 44a3eaeba04ef78835ca741592c376428ada5f71 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rg=20Frings-F=C3=BCrst?= Date: Sat, 2 Dec 2017 10:30:25 +0100 Subject: New upstream version 0.9.8 --- lib/uninorm/uninorm-filter.c | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) (limited to 'lib/uninorm/uninorm-filter.c') diff --git a/lib/uninorm/uninorm-filter.c b/lib/uninorm/uninorm-filter.c index c6db051e..f29dece5 100644 --- a/lib/uninorm/uninorm-filter.c +++ b/lib/uninorm/uninorm-filter.c @@ -1,5 +1,5 @@ /* Stream-based normalization of Unicode strings. - Copyright (C) 2009-2016 Free Software Foundation, Inc. + Copyright (C) 2009-2017 Free Software Foundation, Inc. Written by Bruno Haible , 2009. This program is free software: you can redistribute it and/or @@ -22,7 +22,7 @@ Lesser General Public License for more details. You should have received a copy of the GNU Lesser General Public License - along with this program. If not, see . */ + along with this program. If not, see . */ #include @@ -140,7 +140,7 @@ uninorm_filter_write (struct uninorm_filter *filter, ucs4_t uc_arg) { /* Cache sortbuf and sortbuf_count in local register variables. */ - struct ucs4_with_ccc * const sortbuf = filter->sortbuf; + struct ucs4_with_ccc *sortbuf = filter->sortbuf; size_t sortbuf_count = filter->sortbuf_count; int i; @@ -261,9 +261,11 @@ uninorm_filter_write (struct uninorm_filter *filter, ucs4_t uc_arg) if (filter->sortbuf != filter->sortbuf_preallocated) free (filter->sortbuf); filter->sortbuf = new_sortbuf; + /* Update cache of filter->sortbuf. */ + sortbuf = filter->sortbuf; } - filter->sortbuf[sortbuf_count].code = uc; - filter->sortbuf[sortbuf_count].ccc = ccc; + sortbuf[sortbuf_count].code = uc; + sortbuf[sortbuf_count].ccc = ccc; sortbuf_count++; } -- cgit v1.2.3