mirror of
https://github.com/servo/servo.git
synced 2025-07-23 07:13:52 +01:00
Fix crash due to address significance for JSAPI things.
This commit is contained in:
parent
95fc29fa0d
commit
7fec73a432
2 changed files with 3 additions and 3 deletions
|
@ -205,7 +205,7 @@ impl<'a> EventTargetHelpers for JSRef<'a, EventTarget> {
|
|||
let nargs = 1; //XXXjdm not true for onerror
|
||||
const ARG_NAME: [c_char; 6] =
|
||||
['e' as c_char, 'v' as c_char, 'e' as c_char, 'n' as c_char, 't' as c_char, 0];
|
||||
const ARG_NAMES: [*const c_char; 1] = [&ARG_NAME as *const c_char];
|
||||
static mut ARG_NAMES: [*const c_char; 1] = [&ARG_NAME as *const c_char];
|
||||
|
||||
let source: Vec<u16> = source.as_slice().utf16_units().collect();
|
||||
let handler = unsafe {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue