summaryrefslogtreecommitdiff
path: root/host/lib/crossystem.c
diff options
context:
space:
mode:
Diffstat (limited to 'host/lib/crossystem.c')
-rw-r--r--host/lib/crossystem.c32
1 files changed, 18 insertions, 14 deletions
diff --git a/host/lib/crossystem.c b/host/lib/crossystem.c
index 53ec6897..6d70d6aa 100644
--- a/host/lib/crossystem.c
+++ b/host/lib/crossystem.c
@@ -747,20 +747,24 @@ int VbSetSystemPropertyString(const char* name, const char* value) {
}
-static int InAndroid() {
- int fd;
- struct stat s;
-
- /* In Android, mosys utility located in /system/bin
- check if file exists. Using fstat because for some
- reason, stat() was seg faulting in Android */
- fd = open(MOSYS_ANDROID_PATH, O_RDONLY);
- if (fd != -1 && fstat(fd, &s) == 0) {
- close(fd);
- return 1;
- }
- close(fd);
- return 0;
+static int InAndroid(void)
+{
+ int fd;
+ struct stat s;
+ int retval = 0;
+
+ /*
+ * In Android, mosys utility located in /system/bin check if file
+ * exists. Using fstat because for some reason, stat() was seg
+ * faulting in Android
+ */
+ fd = open(MOSYS_ANDROID_PATH, O_RDONLY);
+ if (fd != -1) {
+ if (fstat(fd, &s) == 0)
+ retval = 1;
+ close(fd);
+ }
+ return retval;
}