From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-lj1-f196.google.com (mail-lj1-f196.google.com [209.85.208.196]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by dev.tarantool.org (Postfix) with ESMTPS id AB66A43D67A for ; Fri, 18 Oct 2019 00:15:44 +0300 (MSK) Received: by mail-lj1-f196.google.com with SMTP id d1so3996218ljl.13 for ; Thu, 17 Oct 2019 14:15:44 -0700 (PDT) Date: Fri, 18 Oct 2019 00:15:42 +0300 From: Cyrill Gorcunov Message-ID: <20191017211542.GF9698@uranus.lan> References: <6de1f18613e9b6a3f716c60b9c85457d2bd9eb64.1571341771.git.v.shpilevoy@tarantool.org> <20191017200042.GC9698@uranus.lan> <20191017210505.GD9698@uranus.lan> <20191017210820.GE9698@uranus.lan> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: Subject: Re: [Tarantool-patches] [tarantool-patches] Re: [PATCH 1/1] console: fix usage of an undeclared variable List-Id: Tarantool development List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Vladislav Shpilevoy Cc: tarantool-patches@freelists.org, tarantool-patches@dev.tarantool.org On Thu, Oct 17, 2019 at 11:18:22PM +0200, Vladislav Shpilevoy wrote: > Previously there was an error about undeclared variable. > > 'return rc' > > Here 'rc' was not declared. Yes, and it means we will get nil here, and the caller code threat it as no-error and return empty string upward.