summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKeith Packard <keithp@neko.keithp.com>2006-08-31 09:07:32 -0700
committerKeith Packard <keithp@neko.keithp.com>2006-08-31 09:07:32 -0700
commite9a564e2cd3cb40109a1133dbbcee9f938f141b3 (patch)
tree0273b223ba6a1237e268d11b13983e1c32672881
parentc50ea916b0e56520948804b67fc7df57bb490575 (diff)
downloadfontconfig-e9a564e2cd3cb40109a1133dbbcee9f938f141b3.tar.gz
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.
-rw-r--r--src/fcpat.c1
1 files changed, 1 insertions, 0 deletions
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;