]> git.wh0rd.org - fontconfig.git/blobdiff - src/fcatomic.c
[FcStrBuf] better handle malloc failure
[fontconfig.git] / src / fcatomic.c
index 9038a5f2eea5351f694e08cc8b3c0fe122332160..fca23994451b0eff08ca4680a163e8116457ed41 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * $RCSId: xc/lib/fontconfig/src/fcatomic.c,v 1.2 2002/03/04 21:15:28 tsi Exp $
+ * fontconfig/src/fcatomic.c
  *
  * Copyright © 2002 Keith Packard
  *
@@ -142,7 +142,7 @@ FcAtomicLock (FcAtomic *atomic)
         * machines sharing the same filesystem will have clocks
         * reasonably close to each other.
         */
-       if (stat ((char *) atomic->lck, &lck_stat) >= 0)
+       if (FcStat ((char *) atomic->lck, &lck_stat) >= 0)
        {
            time_t  now = time (0);
            if ((long int) (now - lck_stat.st_mtime) > 10 * 60)
@@ -205,7 +205,7 @@ void
 FcAtomicDestroy (FcAtomic *atomic)
 {
     FcMemFree (FC_MEM_ATOMIC, sizeof (FcAtomic) +
-              strlen ((char *) atomic->file) * 4 + 1 +
+              strlen ((char *) atomic->file) * 4 + 4 +
               sizeof (NEW_NAME) + sizeof (LCK_NAME) + 
               sizeof (TMP_NAME));