From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from localhost (localhost [127.0.0.1]) by turing.freelists.org (Avenir Technologies Mail Multiplex) with ESMTP id 8AEED269DA for ; Sun, 24 Feb 2019 06:07:21 -0500 (EST) Received: from turing.freelists.org ([127.0.0.1]) by localhost (turing.freelists.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id TMwGsXirkaAK for ; Sun, 24 Feb 2019 06:07:21 -0500 (EST) Received: from smtpng3.m.smailru.net (smtpng3.m.smailru.net [94.100.177.149]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by turing.freelists.org (Avenir Technologies Mail Multiplex) with ESMTPS id 400742682A for ; Sun, 24 Feb 2019 06:07:21 -0500 (EST) Subject: [tarantool-patches] Re: [PATCH 1/1] fiber: extend name buffer on 1 byte for \0 From: Vladislav Shpilevoy References: <08ce04d1843cfd15d255608d8ec7eaf70f804e9e.1551005861.git.v.shpilevoy@tarantool.org> Message-ID: <0b29a753-83bf-0f3a-d8c9-5418fdd66c43@tarantool.org> Date: Sun, 24 Feb 2019 14:07:18 +0300 MIME-Version: 1.0 In-Reply-To: <08ce04d1843cfd15d255608d8ec7eaf70f804e9e.1551005861.git.v.shpilevoy@tarantool.org> Content-Type: text/plain; charset=utf-8; format=flowed Content-Language: en-US Content-Transfer-Encoding: 7bit Sender: tarantool-patches-bounce@freelists.org Errors-to: tarantool-patches-bounce@freelists.org Reply-To: tarantool-patches@freelists.org List-help: List-unsubscribe: List-software: Ecartis version 1.0.0 List-Id: tarantool-patches List-subscribe: List-owner: List-post: List-archive: To: tarantool-patches@freelists.org Cc: kostja@tarantool.org Pushed to 2.1, 1.10 as obvious. On 24/02/2019 13:58, Vladislav Shpilevoy wrote: > Checks for fiber_name legth worked with FIBER_NAME_MAX, > while one byte in fact was occupied by terminating zero. > > Closes #4011 > --- > Issue: https://github.com/tarantool/tarantool/issues/4011 > > src/fiber.h | 2 +- > test/app/fiber.result | 8 ++++---- > test/app/fiber.test.lua | 2 +- > test/unit/fiber.result | 2 +- > 4 files changed, 7 insertions(+), 7 deletions(-) >