Skip to content

Commit

Permalink
Merge pull request #12 from boosty/fix-memleak
Browse files Browse the repository at this point in the history
Fix fdset memory leak
  • Loading branch information
Stefan Kaes committed Jun 11, 2015
2 parents dc5a57c + 31a2bbe commit eac8aaa
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions ext/typhoeus/typhoeus_multi.c
Expand Up @@ -179,6 +179,10 @@ static VALUE multi_perform(VALUE self) {

}

rb_fd_term (&fdread);
rb_fd_term (&fdwrite);
rb_fd_term (&fdexcep);

return Qnil;
}

Expand Down

0 comments on commit eac8aaa

Please sign in to comment.