mirror of
https://gitee.com/openharmony/ability_ability_runtime
synced 2024-11-23 07:10:19 +00:00
commit
473426156f
@ -163,6 +163,7 @@ void FFIAbilityDelegatorFinishTest(int64_t id, const char* msg, int64_t code)
|
||||
auto cjDelegator = FFI::FFIData::GetData<CJAbilityDelegator>(id);
|
||||
if (cjDelegator == nullptr) {
|
||||
TAG_LOGE(AAFwkTag::DELEGATOR, "null cj delegator");
|
||||
return;
|
||||
}
|
||||
cjDelegator->FinishTest(msg, code);
|
||||
}
|
||||
|
@ -306,7 +306,7 @@ void UserController::UserBootDone(std::shared_ptr<UserItem> &item)
|
||||
|
||||
std::lock_guard<ffrt::mutex> guard(userLock_);
|
||||
auto it = userItems_.find(userId);
|
||||
if (it != userItems_.end()) {
|
||||
if (it == userItems_.end()) {
|
||||
return;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user