Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

JNI reference leaks when passing JavaScript arrays #167

Closed
slavchev opened this issue Jul 28, 2015 · 0 comments
Closed

JNI reference leaks when passing JavaScript arrays #167

slavchev opened this issue Jul 28, 2015 · 0 comments
Assignees
Milestone

Comments

@slavchev
Copy link

Step to reproduce

public class Class1 {
   public void method1(int[] arr) {
   }
}
var arr = [1, 2, 3];
var c = new Class1();
for (var i=0; i<50000; i ++) {
   c.method1(arr);
}
@slavchev slavchev added the bug label Jul 28, 2015
@slavchev slavchev self-assigned this Jul 28, 2015
@slavchev slavchev added this to the 1.3.0 milestone Jul 28, 2015
slavchev pushed a commit that referenced this issue Jul 28, 2015
slavchev pushed a commit that referenced this issue Sep 23, 2015
# for free to join this conversation on GitHub. Already have an account? # to comment
Projects
None yet
Development

No branches or pull requests

2 participants