1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

* thread.c (mutex_unlock): fix typo.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@18244 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
mame 2008-07-28 09:59:12 +00:00
parent 31aa0986b8
commit 13e0d5bc91
2 changed files with 5 additions and 1 deletions

View file

@ -1,3 +1,7 @@
Mon Jul 28 18:58:46 2008 Yusuke Endoh <mame@tsg.ne.jp>
* thread.c (mutex_unlock): fix typo.
Mon Jul 28 18:15:45 2008 Nobuyoshi Nakada <nobu@ruby-lang.org>
* file.c (rb_find_file_ext, rb_find_file): not to split load path with

View file

@ -2741,7 +2741,7 @@ mutex_unlock(mutex_t *mutex)
th_mutex = tmp_mutex;
}
}
mutex->next_mutex = Qfalse;
mutex->next_mutex = NULL;
}
return err;