summaryrefslogtreecommitdiff
path: root/src/odb.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/odb.c')
-rw-r--r--src/odb.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/src/odb.c b/src/odb.c
index 782a77dc4..f68d13509 100644
--- a/src/odb.c
+++ b/src/odb.c
@@ -145,10 +145,8 @@ int git_odb__hashlink(git_oid *out, const char *path)
git_off_t size;
int result;
- if (p_lstat(path, &st) < 0) {
- giterr_set(GITERR_OS, "Failed to stat object '%s'", path);
+ if (git_path_lstat(path, &st) < 0)
return -1;
- }
size = st.st_size;