summaryrefslogtreecommitdiff
path: root/thread_pthread.c
diff options
context:
space:
mode:
authorkosaki <kosaki@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2012-09-20 14:34:12 +0000
committerkosaki <kosaki@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2012-09-20 14:34:12 +0000
commit3ae3c424ceb6d464a6cd8a24e7e32e34bd01e774 (patch)
tree85d1ac7a1f40a75de2843cd625578ec0299a2580 /thread_pthread.c
parent807c13cc61a04f5393dfa1a4a31e468d00678e84 (diff)
* thread_pthread.c (native_cond_initialize): destroy condattr
after using it. Patch by Stanislav Sedov. Thank you. [Bug #7041] [ruby-core:47619] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_9_3@37002 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'thread_pthread.c')
-rw-r--r--thread_pthread.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/thread_pthread.c b/thread_pthread.c
index 6659972d97..b290677e3d 100644
--- a/thread_pthread.c
+++ b/thread_pthread.c
@@ -248,6 +248,7 @@ native_cond_initialize(rb_thread_cond_t *cond, int flags)
#endif
r = pthread_cond_init(&cond->cond, &attr);
+ pthread_condattr_destroy(&attr);
if (r != 0) {
rb_bug_errno("pthread_cond_init", r);
}