+2005-11-17 Andreas Schwab <schwab@suse.de>
+ reviewed by: plam
+
+ * src/fccache.c (FcGlobalCacheSave):
+
+ Don't add current_arch_start more than once.
+
+2005-11-16 Patrick Lam <plam@mit.edu>
+ * src/fccharset.c (FcCharSetDistributeBytes, FcCharSetUnserialize):
+ * src/fcfs.c (FcFontSetUnserialize):
+ * src/fcname.c (FcObjectDistributeBytes, FcObjectUnserialize):
+ * src/fcpat.c (FcStrUnserialize):
+
+ Fix ordering of ALIGN with respect to saving block_ptr; add
+ another ALIGN to fcfs.c.
+
2005-11-16 Patrick Lam <plam@mit.edu>
* src/fccache.c (FcDirCacheProduce)
{
truncate_to += strlen(dir->name) + 1;
truncate_to += sizeof (FcCache);
- truncate_to = FcCacheNextOffset (current_arch_start + truncate_to);
+ truncate_to = FcCacheNextOffset (truncate_to);
truncate_to += dir->metadata.count;
}
truncate_to -= current_arch_start;
if (!FcCharSetEnsureBank(bi))
return 0;
- charsets[bi] = (FcCharSet *)block_ptr;
block_ptr = ALIGN (block_ptr, FcCharSet);
+ charsets[bi] = (FcCharSet *)block_ptr;
block_ptr = (void *)((char *)block_ptr +
(sizeof (FcCharSet) * charset_count));
- numbers[bi] = (FcChar16 *)block_ptr;
block_ptr = ALIGN (block_ptr, FcChar16);
+ numbers[bi] = (FcChar16 *)block_ptr;
block_ptr = (void *)((char *)block_ptr +
(sizeof(FcChar16) * charset_numbers_count));
- leaves[bi] = (FcCharLeaf *)block_ptr;
block_ptr = ALIGN (block_ptr, FcCharLeaf);
+ leaves[bi] = (FcCharLeaf *)block_ptr;
block_ptr = (void *)((char *)block_ptr +
(sizeof(FcCharLeaf) * charset_leaf_count));
- leaf_idx[bi] = (int *)block_ptr;
block_ptr = ALIGN (block_ptr, int);
+ leaf_idx[bi] = (int *)block_ptr;
block_ptr = (void *)((char *)block_ptr +
(sizeof(int) * charset_leaf_idx_count));
if (!FcCharSetEnsureBank(bi))
return 0;
+ block_ptr = ALIGN (block_ptr, FcCharSet);
charsets[bi] = (FcCharSet *)block_ptr;
block_ptr = (void *)((char *)block_ptr +
(sizeof (FcCharSet) * metadata.charset_count));
+ block_ptr = ALIGN (block_ptr, FcChar16);
numbers[bi] = (FcChar16 *)block_ptr;
block_ptr = (void *)((char *)block_ptr +
(sizeof(FcChar16) * metadata.charset_numbers_count));
+ block_ptr = ALIGN (block_ptr, FcCharLeaf);
leaves[bi] = (FcCharLeaf *)block_ptr;
block_ptr = (void *)((char *)block_ptr +
(sizeof(FcCharLeaf) * metadata.charset_leaf_count));
+ block_ptr = ALIGN (block_ptr, int);
leaf_idx[bi] = (int *)block_ptr;
block_ptr = (void *)((char *)block_ptr +
(sizeof(int) * metadata.charset_leaf_idx_count));
int nfont;
int i, n;
+ block_ptr = ALIGN (block_ptr, int);
nfont = *(int *)block_ptr;
block_ptr = (int *)block_ptr + 1;
if (nfont > 0)
{
FcPattern * p = (FcPattern *)block_ptr;
- block_ptr = FcPatternUnserialize (metadata, block_ptr);
+
+ /* The following line is a bit counterintuitive. The usual
+ * convention is that FcPatternUnserialize is responsible for
+ * aligning the FcPattern. However, the FontSet also stores
+ * the FcPatterns in its own array, so we need to align here
+ * too. */
+ p = ALIGN(p, FcPattern);
for (i = 0; i < nfont; i++)
s->fonts[n + i] = p+i;
+ block_ptr = FcPatternUnserialize (metadata, block_ptr);
block_ptr = FcObjectUnserialize (metadata, block_ptr);
}
void *
FcObjectDistributeBytes (FcCache * metadata, void * block_ptr)
{
- *(int *)block_ptr = biggest_known_ntypes;
block_ptr = ALIGN (block_ptr, int);
+ *(int *)block_ptr = biggest_known_ntypes;
block_ptr = (int *) block_ptr + 1;
- biggest_ptr = block_ptr;
block_ptr = ALIGN (block_ptr, char);
+ biggest_ptr = block_ptr;
block_ptr = (char *) block_ptr + biggest_known_count;
return block_ptr;
}
{
int new_biggest;
new_biggest = *(int *)block_ptr;
+ block_ptr = ALIGN (block_ptr, int);
block_ptr = (int *) block_ptr + 1;
if (biggest_known_ntypes < new_biggest)
{
biggest_known_ntypes = new_biggest;
biggest_known_types = (const FcObjectType *)bn;
}
+ block_ptr = ALIGN (block_ptr, char);
block_ptr = (char *) block_ptr + biggest_known_count;
return block_ptr;
}
return 0;
FcMemAlloc (FC_MEM_STRING, sizeof (char) * metadata.str_count);
+ block_ptr = ALIGN (block_ptr, FcChar8);
static_strs[bi] = (FcChar8 *)block_ptr;
block_ptr = (void *)((char *)block_ptr +
(sizeof (char) * metadata.str_count));