From 13e0d5bc917612c13134e8dd00fbdc28431874d7 Mon Sep 17 00:00:00 2001 From: mame Date: Mon, 28 Jul 2008 09:59:12 +0000 Subject: [PATCH] * thread.c (mutex_unlock): fix typo. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@18244 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ChangeLog | 4 ++++ thread.c | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 0a9db443a9..6e49270ad3 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +Mon Jul 28 18:58:46 2008 Yusuke Endoh + + * thread.c (mutex_unlock): fix typo. + Mon Jul 28 18:15:45 2008 Nobuyoshi Nakada * file.c (rb_find_file_ext, rb_find_file): not to split load path with diff --git a/thread.c b/thread.c index 0a313abe13..c965a657de 100644 --- a/thread.c +++ b/thread.c @@ -2741,7 +2741,7 @@ mutex_unlock(mutex_t *mutex) th_mutex = tmp_mutex; } } - mutex->next_mutex = Qfalse; + mutex->next_mutex = NULL; } return err;