aboutsummaryrefslogtreecommitdiffstats
path: root/thread_sync.c
diff options
context:
space:
mode:
authorko1 <ko1@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2015-12-09 00:38:32 +0000
committerko1 <ko1@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2015-12-09 00:38:32 +0000
commit4f9868552e2aa66384598b5bc0fc9414e3cc8aba (patch)
tree5f22302de3f437b1ba7e2e1d387d9665efda08fd /thread_sync.c
parent6559da7fc87af575893087469183c9cedf5bd3cd (diff)
downloadruby-4f9868552e2aa66384598b5bc0fc9414e3cc8aba.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.c2
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 = {