Skip to content

Commit

Permalink
Don't try and calculate needed stack space - it ain't quite that simp…
Browse files Browse the repository at this point in the history
…le. Just do what all the docs do and allow a decent amount.
  • Loading branch information
jnthn committed Jan 22, 2012
1 parent 9c20151 commit 20df103
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ops/nqp_dyncall.ops
Expand Up @@ -394,7 +394,7 @@ inline op nqp_native_call(out PMC, in PMC, in PMC, in PMC) :base_core {
NativeCallBody *body = get_nc_body(interp, $3);

/* Create and set up call VM. */
DCCallVM *vm = dcNewCallVM(body->num_args * sizeof(void *));
DCCallVM *vm = dcNewCallVM(8192);
dcMode(vm, body->convention);

/* Process arguments. */
Expand Down

0 comments on commit 20df103

Please sign in to comment.