mirror of
https://gitee.com/openharmony/ability_ability_runtime
synced 2024-11-22 23:00:39 +00:00
commit
473426156f
@ -26,7 +26,7 @@ namespace OHOS {
|
||||
namespace AbilityDelegatorCJ {
|
||||
using namespace OHOS::FFI;
|
||||
using namespace OHOS::AbilityRuntime;
|
||||
|
||||
|
||||
int32_t CJAbilityDelegator::StartAbility(const AAFwk::Want &want)
|
||||
{
|
||||
return delegator_->StartAbility(want);
|
||||
@ -68,7 +68,7 @@ void CJAbilityDelegator::FinishTest(const char* msg, int64_t code)
|
||||
{
|
||||
delegator_->FinishUserTest(msg, code);
|
||||
}
|
||||
|
||||
|
||||
extern "C" {
|
||||
int64_t FFIAbilityDelegatorRegistryGetAbilityDelegator()
|
||||
{
|
||||
@ -84,7 +84,7 @@ int64_t FFIAbilityDelegatorRegistryGetAbilityDelegator()
|
||||
}
|
||||
return cjDelegator->GetID();
|
||||
}
|
||||
|
||||
|
||||
int32_t FFIAbilityDelegatorStartAbility(int64_t id, WantHandle want)
|
||||
{
|
||||
auto cjDelegator = FFI::FFIData::GetData<CJAbilityDelegator>(id);
|
||||
@ -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