summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJay Freeman (saurik) <saurik@saurik.com>2008-11-17 02:56:05 +0100
committerJean-Baptiste Queru <jbq@google.com>2009-08-25 21:53:40 +0200
commit619ec2f3aadb814cd09e412e832d94d5c4665ea6 (patch)
tree531ff4e39ee3622cdf7e3fc3a99ef85fcc6ce82d
parentmerge from donut (diff)
downloadandroid_bootable_recovery-619ec2f3aadb814cd09e412e832d94d5c4665ea6.tar
android_bootable_recovery-619ec2f3aadb814cd09e412e832d94d5c4665ea6.tar.gz
android_bootable_recovery-619ec2f3aadb814cd09e412e832d94d5c4665ea6.tar.bz2
android_bootable_recovery-619ec2f3aadb814cd09e412e832d94d5c4665ea6.tar.lz
android_bootable_recovery-619ec2f3aadb814cd09e412e832d94d5c4665ea6.tar.xz
android_bootable_recovery-619ec2f3aadb814cd09e412e832d94d5c4665ea6.tar.zst
android_bootable_recovery-619ec2f3aadb814cd09e412e832d94d5c4665ea6.zip
-rw-r--r--recovery.c9
1 files changed, 6 insertions, 3 deletions
diff --git a/recovery.c b/recovery.c
index 0408abf92..0ff5d94d0 100644
--- a/recovery.c
+++ b/recovery.c
@@ -129,7 +129,6 @@ fopen_root_path(const char *root_path, const char *mode) {
if (strchr("wa", mode[0])) dirCreateHierarchy(path, 0777, NULL, 1);
FILE *fp = fopen(path, mode);
- if (fp == NULL) LOGE("Can't open %s\n", path);
return fp;
}
@@ -218,7 +217,9 @@ finish_recovery(const char *send_intent)
// By this point, we're ready to return to the main system...
if (send_intent != NULL) {
FILE *fp = fopen_root_path(INTENT_FILE, "w");
- if (fp != NULL) {
+ if (fp == NULL) {
+ LOGE("Can't open %s\n", INTENT_FILE);
+ } else {
fputs(send_intent, fp);
check_and_fclose(fp, INTENT_FILE);
}
@@ -226,7 +227,9 @@ finish_recovery(const char *send_intent)
// Copy logs to cache so the system can find out what happened.
FILE *log = fopen_root_path(LOG_FILE, "a");
- if (log != NULL) {
+ if (log == NULL) {
+ LOGE("Can't open %s\n", LOG_FILE);
+ } else {
FILE *tmplog = fopen(TEMPORARY_LOG_FILE, "r");
if (tmplog == NULL) {
LOGE("Can't open %s\n", TEMPORARY_LOG_FILE);