Skip to content
Snippets Groups Projects
Commit b687acb0 authored by Zbyněk Šlajchrt's avatar Zbyněk Šlajchrt
Browse files

[GR-10948] Package randomForest enabled.

PullRequest: fastr/1615
parents fe0f565f 509ad271
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