Another FcCacheReadString return value check.
+2006-01-30 Patrick Lam <plam@mit.edu>
+ * fc-cat/fc-cat.c (FcCacheGlobalFileReadAndPrint):
+
+ Update fc-cat to handle subdir lists in global cache file.
+
+ * src/fccache.c (FcGlobalCacheLoad):
+
+ Another FcCacheReadString return value check.
+
2006-01-30 Mike Fabian <mfabian@suse.de>
reviewed by: plam
int fd;
char * current_arch_machine_name;
char candidate_arch_machine_name[9+MACHINE_SIGNATURE_SIZE];
+ char subdirName[FC_MAX_FILE_LEN + 1 + 12 + 1];
off_t current_arch_start = 0;
if (!cache_file)
printf ("fc-cat: printing global cache contents for dir %s\n",
name_buf);
+ do
+ {
+ if (!FcCacheReadString (fd, subdirName,
+ sizeof (subdirName)) ||
+ !strlen (subdirName))
+ break;
+ /* then don't do anything with subdirName. */
+ } while (1);
+
if (!FcDirCacheConsume (fd, name_buf, set, 0))
goto bail1;
{
off_t targ;
- if (!FcCacheReadString (cache->fd, name_buf, sizeof (name_buf)) || !strlen(name_buf))
+ if (!FcCacheReadString (cache->fd, name_buf, sizeof (name_buf)) ||
+ !strlen(name_buf))
break;
/* Directory must be older than the global cache file; also
d->offset = lseek (cache->fd, 0, SEEK_CUR);
d->subdirs = FcStrSetCreate();
- while (strlen(FcCacheReadString (cache->fd, subdirName, sizeof (subdirName))) > 0)
+ do
+ {
+ if (!FcCacheReadString (cache->fd, subdirName,
+ sizeof (subdirName)) ||
+ !strlen (subdirName))
+ break;
FcStrSetAdd (d->subdirs, (FcChar8 *)subdirName);
+ } while (1);
if (read (cache->fd, &d->metadata, sizeof (FcCache)) != sizeof (FcCache))
goto bail1;