Add missing return on file_handler failure
Mistake introduced by 84334cf7db
.
This commit is contained in:
parent
007f616302
commit
73e0311d14
1 changed files with 1 additions and 0 deletions
|
@ -37,6 +37,7 @@ file_handler_init(struct file_handler *file_handler, const char *serial,
|
||||||
LOGE("Could not create intr");
|
LOGE("Could not create intr");
|
||||||
sc_cond_destroy(&file_handler->event_cond);
|
sc_cond_destroy(&file_handler->event_cond);
|
||||||
sc_mutex_destroy(&file_handler->mutex);
|
sc_mutex_destroy(&file_handler->mutex);
|
||||||
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
file_handler->serial = strdup(serial);
|
file_handler->serial = strdup(serial);
|
||||||
|
|
Loading…
Reference in a new issue