Signed-off-by: ma-shaoyin <mashaoyin1@huawei.com>

Changes to be committed:
This commit is contained in:
ma-shaoyin 2022-10-18 08:56:37 +08:00
parent 666600ccc1
commit 37318a246d

View File

@ -52,8 +52,8 @@ bool FuzzDownloadBaseNotify(const uint8_t *rawData, size_t size)
MessageParcel reply;
MessageOption option;
sptr<DownloadBaseNotify> mDownld = new DownloadBaseNotify(notifyData.env, notifyData.paramNumber, notifyData.ref);
mDownld->OnRemoteRequest(code, data, reply, option);
sptr<DownloadBaseNotify> download = new DownloadBaseNotify(notifyData.env, notifyData.paramNumber, notifyData.ref);
download->OnRemoteRequest(code, data, reply, option);
return true;
}