Fix logic to allow default null thread argument

This commit is contained in:
Pedro J. Estébanez 2021-08-08 12:53:30 +02:00
parent ff52996e58
commit a6303b70a5

View file

@ -1787,7 +1787,7 @@ void _Thread::_start_func(void *ud) {
target_param_count = method->get_argument_count();
target_default_arg_count = method->get_default_argument_count();
}
if (target_param_count >= 1 && target_default_arg_count == target_param_count) {
if (target_param_count >= 1 && target_default_arg_count < target_param_count) {
argc = 1;
}
}