Skip to content
Snippets Groups Projects
Commit 509ad271 authored by Zbynek Slajchrt's avatar Zbynek Slajchrt
Browse files

Package randomForest enabled

parent fd15b765
No related branches found
No related tags found
No related merge requests found
......@@ -33,7 +33,7 @@ char *R_alloc(size_t n, int size) {
// This is S compatible version of R_alloc
char *S_alloc(long n, int size) {
char *p = R_alloc(n, size);
memset(p, 0, n);
memset(p, 0, n * size);
return p;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment