Fix crash on invalid constants in config files (forgot to update a pointer
upon list iteration.)
This commit is contained in:
parent
f28472fdb4
commit
38b2ecad5a
|
@ -1,3 +1,9 @@
|
||||||
|
2005-11-17 Patrick Lam <plam@mit.edu>
|
||||||
|
* src/fccfg.c (FcConfigValues):
|
||||||
|
|
||||||
|
Fix crash on invalid constants in config files (forgot to update
|
||||||
|
a pointer upon list iteration.)
|
||||||
|
|
||||||
2005-11-17 Frederic Crozat <fcrozat@mandriva.com>
|
2005-11-17 Frederic Crozat <fcrozat@mandriva.com>
|
||||||
reviewed by: plam
|
reviewed by: plam
|
||||||
|
|
||||||
|
|
|
@ -1121,6 +1121,7 @@ FcConfigValues (FcPattern *p, FcExpr *e, FcValueBinding binding)
|
||||||
free (l);
|
free (l);
|
||||||
}
|
}
|
||||||
lp = next;
|
lp = next;
|
||||||
|
l = FcValueListPtrU (lp);
|
||||||
}
|
}
|
||||||
return l;
|
return l;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue