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:
parent
c50ea916b0
commit
e9a564e2cd
|
@ -1187,6 +1187,7 @@ FcValueListSerialize (FcSerialize *serialize, const FcValueList *vl)
|
||||||
default:
|
default:
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
prev_serialized = vl_serialized;
|
||||||
vl = vl->next;
|
vl = vl->next;
|
||||||
}
|
}
|
||||||
return head_serialized;
|
return head_serialized;
|
||||||
|
|
Loading…
Reference in New Issue