Skip to content
Snippets Groups Projects
Commit 2f4a5c79 authored by Konstantin Osipov's avatar Konstantin Osipov
Browse files

Merge branch 'master' of git+ssh://github.com/tarantool/tarantool

parents b29d54d0 7a15bde8
No related branches found
No related tags found
No related merge requests found
......@@ -150,8 +150,8 @@ struct errcode_record {
/* 96 */_(ER_GUEST_USER_PASSWORD, 2, "Setting password for guest user has no effect") \
/* 97 */_(ER_TRANSACTION_CONFLICT, 2, "Transaction has been aborted by conflict") \
/* 98 */_(ER_UNSUPPORTED_ROLE_PRIV, 2, "Unsupported role privilege '%s'") \
/* 98 */_(ER_LOAD_FUNCTION, 2, "Failed to dynamically load function '%s': %s") \
/* 98 */_(ER_FUNCTION_LANGUAGE, 2, "Unsupported language '%s' specified for function '%s'") \
/* 99 */_(ER_LOAD_FUNCTION, 2, "Failed to dynamically load function '%s': %s") \
/*100 */_(ER_FUNCTION_LANGUAGE, 2, "Unsupported language '%s' specified for function '%s'") \
/*
* !IMPORTANT! Please follow instructions at start of the file
......
......@@ -64,6 +64,7 @@ fiber_call(struct fiber *callee)
assert(cord->call_stack_depth < FIBER_CALL_STACK);
assert(caller);
assert(caller != callee);
cord->call_stack_depth++;
cord->fiber = callee;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment