From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:44241) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZbnyO-0007fs-Fc for qemu-devel@nongnu.org; Tue, 15 Sep 2015 07:00:32 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1ZbnyL-0007tw-Oa for qemu-devel@nongnu.org; Tue, 15 Sep 2015 07:00:28 -0400 Received: from mx1.redhat.com ([209.132.183.28]:49227) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZbnyL-0007te-Ja for qemu-devel@nongnu.org; Tue, 15 Sep 2015 07:00:25 -0400 References: <55F0DB30.6070607@intel.com> <55F14E20.6070805@intel.com> <55F69A18.20709@redhat.com> From: Paolo Bonzini Message-ID: <55F7FA43.40600@redhat.com> Date: Tue, 15 Sep 2015 13:00:19 +0200 MIME-Version: 1.0 In-Reply-To: Content-Type: text/plain; charset=windows-1252 Content-Transfer-Encoding: 7bit Subject: Re: [Qemu-devel] [PULL 0/19] xen-2015-09-08-tag List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Stefano Stabellini Cc: Peter Maydell , "Chen, Tiejun" , "xen-devel@lists.xensource.com Devel" , QEMU Developers , mst@redhat.com On 15/09/2015 11:55, Stefano Stabellini wrote: > On Mon, 14 Sep 2015, Paolo Bonzini wrote: >> > On 10/09/2015 12:29, Stefano Stabellini wrote: >>> > > + if (lseek(config_fd, pos, SEEK_SET) != pos) { >>> > > + return -errno; >>> > > + } >>> > > do { >>> > > - rc = pread(config_fd, (uint8_t *)&val, len, pos); >>> > > + rc = read(config_fd, (uint8_t *)&val, len); >>> > > } while (rc < 0 && (errno == EINTR || errno == EAGAIN)); >> > >> > This leaks config_fd. > I don't follow, it leaks config_fd where? Where lseek returns -errno (and IIRC in other places in the same function). Paolo