chakra-core/ChakraCore

Assertion failure in JavascriptArray.cpp

オープン

#6,770 opened on 2021/12/24

 (7 件のコメント) (0 件のリアクション) (0 人の担当者)JavaScript (1,225 件のフォーク)batch import
Buggood first issue

Repository metrics

Stars
 (9,258 個のスター)
PR merge metrics
 (PR metrics pending)

説明

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);
}

コントリビューターガイド