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.
This commit is contained in:
Keith Packard 2006-08-31 09:07:32 -07:00
parent c50ea916b0
commit e9a564e2cd
1 changed files with 1 additions and 0 deletions

View File

@ -1187,6 +1187,7 @@ FcValueListSerialize (FcSerialize *serialize, const FcValueList *vl)
default:
break;
}
prev_serialized = vl_serialized;
vl = vl->next;
}
return head_serialized;