Minor module related fixes

This commit is contained in:
topjohnwu 2019-12-30 13:21:39 +08:00
parent 78c64d39ec
commit 2db1e5cb74
1 changed files with 2 additions and 1 deletions

View File

@ -414,7 +414,7 @@ static bool magisk_env() {
static void prepare_modules() {
// Upgrade modules
if (auto dir = xopen_dir(MODULEUPGRADE); dir) {
if (auto dir = open_dir(MODULEUPGRADE); dir) {
for (dirent *entry; (entry = xreaddir(dir.get()));) {
if (entry->d_type == DT_DIR) {
if (entry->d_name == "."sv || entry->d_name == ".."sv)
@ -481,6 +481,7 @@ static void collect_modules() {
if (access(buf, F_OK) == 0)
exec_script(buf);
frm_rf(modfd);
unlinkat(dfd, entry->d_name, AT_REMOVEDIR);
continue;
}