mirror of
https://github.com/ManchildProductions/UXP-Fixed.git
synced 2026-05-27 22:28:25 +00:00
8 lines
227 B
JavaScript
8 lines
227 B
JavaScript
Components.utils.import("resource://gre/modules/ctypes.jsm");
|
|
|
|
privateNoteIntentionalCrash();
|
|
|
|
var zero = new ctypes.intptr_t(8);
|
|
var badptr = ctypes.cast(zero, ctypes.PointerType(ctypes.int32_t));
|
|
var crash = badptr.contents;
|