From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from list by lists.gnu.org with archive (Exim 4.71) id 1Sj4RR-0008C0-IT for mharc-grub-devel@gnu.org; Mon, 25 Jun 2012 04:14:37 -0400 Received: from eggs.gnu.org ([208.118.235.92]:46760) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Sj4RK-0008BW-It for grub-devel@gnu.org; Mon, 25 Jun 2012 04:14:36 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Sj4RC-00082q-3O for grub-devel@gnu.org; Mon, 25 Jun 2012 04:14:30 -0400 Received: from mail-wi0-f177.google.com ([209.85.212.177]:63048) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Sj4RB-00082S-Qz for grub-devel@gnu.org; Mon, 25 Jun 2012 04:14:22 -0400 Received: by wibhm11 with SMTP id hm11so1978819wib.12 for ; Mon, 25 Jun 2012 01:14:19 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=message-id:date:from:user-agent:mime-version:to:subject:references :in-reply-to:content-type:content-transfer-encoding; bh=tCL7FGDWDq2urZc3K/bh0c1ugBs0lQH1V9SFZppdgIk=; b=qmNsmtxpqLewfLihcaLcVVXnns8KH4wpAJUksM7b5u1t869SSnHAPEA5186MCa39sF Z/5IVg2e+FJojuyoYa3vzs7QgJUSJlJ7ss75OIqyg1Cz4UMIBWrct508U5tQ6/UXlb5d BuFHWGlk2zH6rY71YGzHULKBQRh2q+u/F3MDIrXuqAAzKhDmccah+uV/J2FolsXPgEDu 46C0vI2TcJLNHWaBm9nEILmprePN5oFqPnxIuMW0ozNjbkWjUkfci9J9VsYhhzy+zVKE tnVnls4WeePoL5qDBCgQUyOBGDiShJzj3LzuX7DXekBl4sUys2jPfHWNPbmVRk5Z0EcP GCLg== Received: by 10.216.80.212 with SMTP id k62mr5424534wee.18.1340612059447; Mon, 25 Jun 2012 01:14:19 -0700 (PDT) Received: from [192.168.1.37] (c2433-1-88-160-112-182.fbx.proxad.net. [88.160.112.182]) by mx.google.com with ESMTPS id y2sm15607260wix.7.2012.06.25.01.14.17 (version=TLSv1/SSLv3 cipher=OTHER); Mon, 25 Jun 2012 01:14:18 -0700 (PDT) Message-ID: <4FE81DD8.2000201@gmail.com> Date: Mon, 25 Jun 2012 10:14:16 +0200 From: =?UTF-8?B?R3LDqWdvaXJlIFN1dHJl?= User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:10.0.4) Gecko/20120510 Icedove/10.0.4 MIME-Version: 1.0 To: The development of GNU GRUB Subject: Re: [PATCH] Fix overflow in grub_util_get_fd_size for NetBSD References: <4FE6F7AF.7080207@gmail.com> <4FE75D0D.20502@gmail.com> In-Reply-To: <4FE75D0D.20502@gmail.com> Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 8bit X-detected-operating-system: by eggs.gnu.org: Genre and OS details not recognized. X-Received-From: 209.85.212.177 X-BeenThere: grub-devel@gnu.org X-Mailman-Version: 2.1.14 Precedence: list Reply-To: The development of GNU GRUB List-Id: The development of GNU GRUB List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 25 Jun 2012 08:14:36 -0000 On 06/24/2012 08:31 PM, Vladimir 'φ-coder/phcoder' Serbinenko wrote: > On 24.06.2012 13:19, Grégoire Sutre wrote: > >> - return label.d_secperunit<< log_sector_size; >> + return (grub_uint64_t)label.d_secperunit<< log_sector_size; > > Please add a space after ). Otherwise go ahead. Done. Grégoire