RusKnyaz / Optimus

Optimus is headless Web Browser fully implemented on .net.
MIT License
82 stars 8 forks source link

Uint8Array can't be initalized by null #36

Closed RusKnyaz closed 4 years ago

RusKnyaz commented 4 years ago

Problem detected during 'habr.com' testing.

The Uint8Array (and others) constructors throws exception when null is passed as an argument.

var arr = new Uint8Array(null);

NullReferenceException occurs in the ClrCtor class.

Note. The issue is reproducible with other arrays types (Int8Array, Int16Array, etc).