summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorAlex Richardson <Alexander.Richardson@cl.cam.ac.uk>2021-07-20 09:30:57 +0100
committerAlex Richardson <Alexander.Richardson@cl.cam.ac.uk>2021-08-18 10:36:47 +0100
commit92ed966b74f304426fa0c888a1916b37e63ac632 (patch)
tree5d7ac6c8135827ed132ac6f39e9d636f6f01316a /src
parente1c7c6d7442ace9c20c424265880ff57c23881f8 (diff)
downloadfontconfig-92ed966b74f304426fa0c888a1916b37e63ac632.tar.gz
FcCharSetPutLeaf(): Fix missing move of new_leaves contents
If the `realloc(numbers)` call fails, shrinking the leaves allocation back to the old size is not guaranteed to return the old pointer value. While this might be the case with some malloc() implementations, realloc() could also just mark the following area as free. To make this less error-prone, we grow numbers first and then grow leaves since the numbers content does not need to be relocated, but leaves does. See https://bugs.freedesktop.org/show_bug.cgi?id=90867
Diffstat (limited to 'src')
-rw-r--r--src/fccharset.c31
1 files changed, 17 insertions, 14 deletions
diff --git a/src/fccharset.c b/src/fccharset.c
index 114f948..832649c 100644
--- a/src/fccharset.c
+++ b/src/fccharset.c
@@ -175,30 +175,33 @@ FcCharSetPutLeaf (FcCharSet *fcs,
}
else
{
+ int i;
unsigned int alloced = fcs->num;
- intptr_t *new_leaves, distance;
+ intptr_t *new_leaves;
+ ptrdiff_t distance;
alloced *= 2;
- new_leaves = realloc (leaves, alloced * sizeof (*leaves));
- if (!new_leaves)
- return FcFalse;
numbers = realloc (numbers, alloced * sizeof (*numbers));
if (!numbers)
+ return FcFalse;
+ new_leaves = realloc (leaves, alloced * sizeof (*leaves));
+ if (!new_leaves)
{
- /* Revert the reallocation of leaves */
- leaves = realloc (new_leaves, (alloced / 2) * sizeof (*new_leaves));
+ /*
+ * Revert the reallocation of numbers. We update numbers_offset
+ * first in case realloc() fails.
+ */
+ fcs->numbers_offset = FcPtrToOffset (fcs, numbers);
+ numbers = realloc (numbers, (alloced / 2) * sizeof (*numbers));
/* unlikely to fail though */
- if (!leaves)
+ if (!numbers)
return FcFalse;
- fcs->leaves_offset = FcPtrToOffset (fcs, leaves);
+ fcs->numbers_offset = FcPtrToOffset (fcs, numbers);
return FcFalse;
}
- distance = (intptr_t) new_leaves - (intptr_t) leaves;
- if (new_leaves && distance)
- {
- int i;
- for (i = 0; i < fcs->num; i++)
- new_leaves[i] -= distance;
+ distance = (char *) new_leaves - (char *) leaves;
+ for (i = 0; i < fcs->num; i++) {
+ new_leaves[i] -= distance;
}
leaves = new_leaves;
}