From da08c6957da54626a905185c201be342a230e76e Mon Sep 17 00:00:00 2001 From: Benoit Germain Date: Mon, 3 Dec 2012 17:54:05 +0100 Subject: fix issue #40 linda:send() and linda:receive() no longer trigger string->number autocoercion when checking for the optional timeout argument: a string is always a linda slot, even if coercible. --- src/lanes.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src') diff --git a/src/lanes.c b/src/lanes.c index 6c044d1..bab5244 100644 --- a/src/lanes.c +++ b/src/lanes.c @@ -279,9 +279,9 @@ LUAG_FUNC( linda_send) luaL_argcheck( L, linda, 1, "expected a linda object!"); - if( lua_isnumber(L, 2)) + if( lua_type( L, 2) == LUA_TNUMBER) // we don't want to use lua_isnumber() because of autocoercion { - timeout= SIGNAL_TIMEOUT_PREPARE( lua_tonumber(L,2) ); + timeout = SIGNAL_TIMEOUT_PREPARE( lua_tonumber( L,2)); ++ key_i; } else if( lua_isnil( L, 2)) // alternate explicit "no timeout" by passing nil before the key @@ -418,7 +418,7 @@ LUAG_FUNC( linda_receive) luaL_argcheck( L, linda, 1, "expected a linda object!"); - if( lua_isnumber( L, 2)) + if( lua_type( L, 2) == LUA_TNUMBER) // we don't want to use lua_isnumber() because of autocoercion { timeout = SIGNAL_TIMEOUT_PREPARE( lua_tonumber( L, 2)); ++ key_i; -- cgit v1.2.3-55-g6feb