From: Keith Packard Date: Thu, 31 Aug 2006 16:07:32 +0000 (-0700) Subject: Serialized value lists were only including one value. X-Git-Tag: 2.3.96~32 X-Git-Url: https://git.wh0rd.org/?p=fontconfig.git;a=commitdiff_plain;h=e9a564e2cd3cb40109a1133dbbcee9f938f141b3 Serialized value lists were only including one value. The next pointer in the serialized value list wasn't getting set, so they were truncated at a single value. --- diff --git a/src/fcpat.c b/src/fcpat.c index bc0bab7..b40d3c0 100644 --- a/src/fcpat.c +++ b/src/fcpat.c @@ -1187,6 +1187,7 @@ FcValueListSerialize (FcSerialize *serialize, const FcValueList *vl) default: break; } + prev_serialized = vl_serialized; vl = vl->next; } return head_serialized;