chakra-core/ChakraCore

Assertion failure in JavascriptArray.cpp

开放

#6,770 创建于 2021年12月24日

 (7 条评论) (0 个反应) (0 位负责人)JavaScript (1,225 个派生)batch import
Buggood first issue

仓库指标

星标
 (9,258 个星标)
PR 合并指标
 (PR 指标待抓取)

描述

the following poc cause a assertion failure in "debug" build on ubuntu.

function opt(){
	const v2 = [-1000000000.0];
	v2.length = 4294967295;
	const v3 = v2.copyWithin();
	return v3;
}


for(let i=0;i<0x200;i++){
	opt(false);
}

贡献者指南