js应用没用崩溃日志,没有生成jscrash

bugfix

issues:https://gitee.com/openharmony/arkcompiler_ets_runtime/issues/I5NE3N

Signed-off-by: Rtangyu <rentangyu@huawei.com>
This commit is contained in:
Rtangyu 2022-08-22 14:44:19 +08:00
parent 0492648d38
commit 105ca0bbde

View File

@ -532,7 +532,7 @@ JSHandle<JSTaggedValue> EcmaVM::GetAndClearEcmaUncaughtException() const
JSHandle<JSTaggedValue> EcmaVM::GetEcmaUncaughtException() const
{
if (thread_->HasPendingException()) {
if (!thread_->HasPendingException()) {
return JSHandle<JSTaggedValue>();
}
JSHandle<JSTaggedValue> exceptionHandle(thread_, thread_->GetException());