Fix a couple more string leaks.
This commit is contained in:
parent
ee2d4c2d9d
commit
1d39324556
2 changed files with 3 additions and 3 deletions
|
@ -191,9 +191,7 @@ rb_run_event(struct ev_entry *ev)
|
|||
ev->func(ev->arg);
|
||||
if(!ev->frequency)
|
||||
{
|
||||
rb_io_unsched_event(ev);
|
||||
rb_dlinkDelete(&ev->node, &event_list);
|
||||
rb_free(ev);
|
||||
rb_event_delete(ev);
|
||||
return;
|
||||
}
|
||||
ev->when = rb_current_time() + ev->frequency;
|
||||
|
|
|
@ -299,6 +299,8 @@ loadmodule:
|
|||
|
||||
if (findmodule_byname(m_bn) == -1)
|
||||
load_one_module($2, 0);
|
||||
|
||||
rb_free(m_bn);
|
||||
#endif
|
||||
}
|
||||
';'
|
||||
|
|
Loading…
Reference in a new issue