Fix non-initialized config->printf issue on the web server

This commit is contained in:
pancake 2014-11-25 11:52:15 +01:00
parent 082c77683c
commit 1f93b515d9
1 changed files with 1 additions and 0 deletions

View File

@ -406,6 +406,7 @@ R_API RConfig *r_config_clone (RConfig *cfg) {
c->n_nodes++;
}
c->lock = cfg->lock;
c->printf = cfg->printf;
return c;
}