Simplify FcValueSave() semantics
This commit is contained in:
parent
8ea654b2aa
commit
efe5eae26b
|
@ -852,7 +852,8 @@ FcConfigEvaluate (FcPattern *p, FcExpr *e)
|
||||||
break;
|
break;
|
||||||
case FcOpString:
|
case FcOpString:
|
||||||
v.type = FcTypeString;
|
v.type = FcTypeString;
|
||||||
v.u.s = FcStrStaticName(e->u.sval);
|
v.u.s = e->u.sval;
|
||||||
|
v = FcValueSave (v);
|
||||||
break;
|
break;
|
||||||
case FcOpMatrix:
|
case FcOpMatrix:
|
||||||
v.type = FcTypeMatrix;
|
v.type = FcTypeMatrix;
|
||||||
|
|
10
src/fcpat.c
10
src/fcpat.c
|
@ -98,7 +98,7 @@ FcValueSave (FcValue v)
|
||||||
{
|
{
|
||||||
switch (v.type) {
|
switch (v.type) {
|
||||||
case FcTypeString:
|
case FcTypeString:
|
||||||
v.u.s = FcStrCopy (v.u.s);
|
v.u.s = FcStrStaticName (v.u.s);
|
||||||
if (!v.u.s)
|
if (!v.u.s)
|
||||||
v.type = FcTypeVoid;
|
v.type = FcTypeVoid;
|
||||||
break;
|
break;
|
||||||
|
@ -482,14 +482,6 @@ FcPatternObjectAddWithBinding (FcPattern *p,
|
||||||
|
|
||||||
memset(new, 0, sizeof (FcValueList));
|
memset(new, 0, sizeof (FcValueList));
|
||||||
FcMemAlloc (FC_MEM_VALLIST, sizeof (FcValueList));
|
FcMemAlloc (FC_MEM_VALLIST, sizeof (FcValueList));
|
||||||
/* dup string */
|
|
||||||
if (value.type == FcTypeString)
|
|
||||||
{
|
|
||||||
value.u.s = FcStrStaticName (value.u.s);
|
|
||||||
if (!value.u.s)
|
|
||||||
value.type = FcTypeVoid;
|
|
||||||
}
|
|
||||||
else
|
|
||||||
value = FcValueSave (value);
|
value = FcValueSave (value);
|
||||||
if (value.type == FcTypeVoid)
|
if (value.type == FcTypeVoid)
|
||||||
goto bail1;
|
goto bail1;
|
||||||
|
|
Loading…
Reference in New Issue