summaryrefslogtreecommitdiff
path: root/src/sortedcache.c
diff options
context:
space:
mode:
authorRussell Belfer <rb@github.com>2014-04-10 22:31:01 -0700
committerRussell Belfer <rb@github.com>2014-04-17 14:56:41 -0700
commit7d4908724fd7d4d8e096b4faf2c652ba5b77644e (patch)
tree2fcd09e7e040607c124f6e658c31f33e1aa1868a /src/sortedcache.c
parent1fa17b5c92cb92a2785fba403b87525169b205c0 (diff)
downloadlibgit2-7d4908724fd7d4d8e096b4faf2c652ba5b77644e.tar.gz
Attribute file cache refactor
This is a big refactoring of the attribute file cache to be a bit simpler which in turn makes it easier to enforce a lock around any updates to the cache so that it can be used in a threaded env. Tons of changes to the attributes and ignores code.
Diffstat (limited to 'src/sortedcache.c')
-rw-r--r--src/sortedcache.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/sortedcache.c b/src/sortedcache.c
index 625322034..c6b226153 100644
--- a/src/sortedcache.c
+++ b/src/sortedcache.c
@@ -232,9 +232,8 @@ unlock:
void git_sortedcache_updated(git_sortedcache *sc)
{
- /* update filestamp to latest value */
- if (git_futils_filestamp_check(&sc->stamp, sc->path) < 0)
- giterr_clear();
+ /* update filestamp to latest value */
+ git_futils_filestamp_check(&sc->stamp, sc->path);
}
/* release all items in sorted cache */