summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTao Bao <tbao@google.com>2015-05-29 08:41:07 +0200
committerAndroid Git Automerger <android-git-automerger@android.com>2015-05-29 08:41:07 +0200
commitf827034fe191b02fd25bd605cdb57816d023446a (patch)
tree475c8c19a659479b3699ce98c16de7c081d5770d
parentresolved conflicts for merge of 158e11d6 to mnc-dev-plus-aosp (diff)
parentam 74f5e0e0: Merge "Use f_bavail to calculate free space" (diff)
downloadandroid_bootable_recovery-f827034fe191b02fd25bd605cdb57816d023446a.tar
android_bootable_recovery-f827034fe191b02fd25bd605cdb57816d023446a.tar.gz
android_bootable_recovery-f827034fe191b02fd25bd605cdb57816d023446a.tar.bz2
android_bootable_recovery-f827034fe191b02fd25bd605cdb57816d023446a.tar.lz
android_bootable_recovery-f827034fe191b02fd25bd605cdb57816d023446a.tar.xz
android_bootable_recovery-f827034fe191b02fd25bd605cdb57816d023446a.tar.zst
android_bootable_recovery-f827034fe191b02fd25bd605cdb57816d023446a.zip
-rw-r--r--applypatch/applypatch.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/applypatch/applypatch.c b/applypatch/applypatch.c
index 6f02a38ee..2358d4292 100644
--- a/applypatch/applypatch.c
+++ b/applypatch/applypatch.c
@@ -662,7 +662,7 @@ size_t FreeSpaceForFile(const char* filename) {
printf("failed to statfs %s: %s\n", filename, strerror(errno));
return -1;
}
- return sf.f_bsize * sf.f_bfree;
+ return sf.f_bsize * sf.f_bavail;
}
int CacheSizeCheck(size_t bytes) {