!879 告警问题修改

Merge pull request !879 from ruan-shaofei/master
This commit is contained in:
openharmony_ci 2024-09-02 13:16:11 +00:00 committed by Gitee
commit f87ce00e36
No known key found for this signature in database
GPG Key ID: 173E9B9CA92EEF8F
2 changed files with 3 additions and 2 deletions

View File

@ -29,6 +29,7 @@ GeofenceRequest::GeofenceRequest()
callback_ = nullptr;
scenario_ = -1;
fenceId_ = -1;
uid_ = 0;
}
GeofenceRequest::GeofenceRequest(GeofenceRequest& geofenceRequest)

View File

@ -90,9 +90,9 @@ public:
{
uid_ = parcel.ReadInt32();
pid_ = parcel.ReadInt32();
tokenId_ = parcel.ReadInt32();
tokenId_ = static_cast<uint32_t>(parcel.ReadInt32());
tokenIdEx_ = parcel.ReadInt64();
firstTokenId_ = parcel.ReadInt32();
firstTokenId_ = static_cast<uint32_t>(parcel.ReadInt32());
bundleName_ = parcel.ReadString();
}