PJSOutput.applyInstance() leaks
Open
- Dominant language
- JavaScript
- Stars
- 776
- Forks
- 180
- PR merge metrics
- No merged PRs in 30d
Description
The program below leaks memory and eventually crashes.
```
fill(0);
draw = function() {
background(255);
text(millis(),0,10);
for (var i = 0; i < 2000 ; i++) {
var q = new PVector (i,i);
}
};
```
Contributor guide
No contributing guide indexed for this repository
Assessment
This issue has not been assessed yet.