diff options
author | ko1 <ko1@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2015-12-09 00:38:32 +0000 |
---|---|---|
committer | ko1 <ko1@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2015-12-09 00:38:32 +0000 |
commit | 2f5b8f05299731e1187475ff4bd6b1618bac3a1a (patch) | |
tree | 5f22302de3f437b1ba7e2e1d387d9665efda08fd /thread_sync.c | |
parent | 6a15a37f0b8f03c98f4b47ec777efa1ae75d7526 (diff) | |
download | bundler-2f5b8f05299731e1187475ff4bd6b1618bac3a1a.tar.gz |
* *.c (*_memsize): do not check ptr.
NULL checking is finished Before call of memsize functions.
See r52979.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@52986 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'thread_sync.c')
-rw-r--r-- | thread_sync.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/thread_sync.c b/thread_sync.c index 673ed60aff..091246a7ad 100644 --- a/thread_sync.c +++ b/thread_sync.c @@ -68,7 +68,7 @@ mutex_free(void *ptr) static size_t mutex_memsize(const void *ptr) { - return ptr ? sizeof(rb_mutex_t) : 0; + return sizeof(rb_mutex_t); } static const rb_data_type_t mutex_data_type = { |