Skip to content

Commit

Permalink
auto merge of #599 : kmcallister/servo/proto-array, r=jdm
Browse files Browse the repository at this point in the history
Fixes #596

@jdm r?
  • Loading branch information
bors-servo committed Jul 18, 2013
2 parents e5fc648 + da6460e commit 073f424
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/script/dom/bindings/utils.rs
Expand Up @@ -616,7 +616,7 @@ pub extern fn ThrowingConstructor(_cx: *JSContext, _argc: uint, _vp: *JSVal) ->
}

pub fn initialize_global(global: *JSObject) {
let protoArray = @mut ([0 as *JSObject, ..21]); //XXXjdm PrototyepList::id::_ID_Count
let protoArray = @mut ([0 as *JSObject, ..22]); //XXXjdm PrototyepList::id::_ID_Count
unsafe {
//XXXjdm we should be storing the box pointer instead of the inner
let box = squirrel_away(protoArray);
Expand Down

0 comments on commit 073f424

Please sign in to comment.