From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from list by lists.gnu.org with archive (Exim 4.71) id 1SDvFr-0003lK-4v for mharc-grub-devel@gnu.org; Sat, 31 Mar 2012 06:09:55 -0400 Received: from eggs.gnu.org ([208.118.235.92]:46066) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1SDvFm-0003iR-WF for grub-devel@gnu.org; Sat, 31 Mar 2012 06:09:52 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1SDvFk-0005Vw-Rv for grub-devel@gnu.org; Sat, 31 Mar 2012 06:09:50 -0400 Received: from mail-wg0-f49.google.com ([74.125.82.49]:39304) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1SDvFk-0005Vp-J2 for grub-devel@gnu.org; Sat, 31 Mar 2012 06:09:48 -0400 Received: by wgbdr1 with SMTP id dr1so937377wgb.30 for ; Sat, 31 Mar 2012 03:09:46 -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:x-enigmail-version:content-type; bh=d/9bmGIj9DycmTs6MFnLwXU1xayyKBDnynCVIj9OhgE=; b=FUtvBnQSiSmPWSkwCz8mNsBzlfBJqJb3HCkExgeUgDQw7mPNaKaK4x1OQP7jCPjRiq 3tbNfysym6aozqgRBPOfNPfG8z76BVk8kG44MSM+3jtALAFaasI9dP8L2Z/v+en0fwZ8 JGCavNx61ylImlEiK4pRl+mRnVMwcAsR39yCZWhIzTxBVDeSj6HQsYf4EzZRdPrevpn2 EASCB0+lN5MEswKhkuC/X0HZweBGp1CkHlLibQdtRGsXONdYlrx69hiNSNaP6OdcvhXr w92U0XS6tKhQNT25lq+XJFULWKEONtO+5KZMm61Swz1WW/+Z7Db1mv1xapDcThJlQKaP m7JA== Received: by 10.180.95.197 with SMTP id dm5mr5674255wib.20.1333188586438; Sat, 31 Mar 2012 03:09:46 -0700 (PDT) Received: from debian.x201.phnet (59-233.197-178.cust.bluewin.ch. [178.197.233.59]) by mx.google.com with ESMTPS id o2sm23434956wiv.11.2012.03.31.03.09.44 (version=TLSv1/SSLv3 cipher=OTHER); Sat, 31 Mar 2012 03:09:44 -0700 (PDT) Message-ID: <4F76D7E5.4020301@gmail.com> Date: Sat, 31 Mar 2012 12:09:41 +0200 From: =?UTF-8?B?VmxhZGltaXIgJ8+GLWNvZGVyL3BoY29kZXInIFNlcmJpbmVua28=?= User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:10.0.3) Gecko/20120329 Icedove/10.0.3 MIME-Version: 1.0 To: The development of GNU GRUB Subject: Re: [PATCH] Big endian fix for iso9660 References: <20120326083606.3dd952f7@kryten> In-Reply-To: <20120326083606.3dd952f7@kryten> X-Enigmail-Version: 1.4 Content-Type: multipart/signed; micalg=pgp-sha512; protocol="application/pgp-signature"; boundary="------------enig590B68DA3B6A0B9C7343C7E2" X-detected-operating-system: by eggs.gnu.org: Genre and OS details not recognized. X-Received-From: 74.125.82.49 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: Sat, 31 Mar 2012 10:09:52 -0000 This is an OpenPGP/MIME signed message (RFC 2440 and 3156) --------------enig590B68DA3B6A0B9C7343C7E2 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable On 25.03.2012 23:36, Anton Blanchard wrote: > 2012-03-26 Anton Blanchard > > * grub-core/fs/iso9660.c (grub_iso9660_iterate_dir): Do not byteswap > 8 bit values. Applied, thanks. > Index: grub/grub-core/fs/iso9660.c > =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D > --- grub.orig/grub-core/fs/iso9660.c 2012-03-09 11:22:11.198004000 +110= 0 > +++ grub/grub-core/fs/iso9660.c 2012-03-26 08:30:18.281488042 +1100 > @@ -620,7 +620,7 @@ grub_iso9660_iterate_dir (grub_fshelp_no > unsigned int pos =3D 1; > =20 > /* The symlink is not stored as a POSIX symlink, translate it. */ > - while (pos + sizeof (*entry) < grub_le_to_cpu32 (entry->len)) > + while (pos + sizeof (*entry) < entry->len) > { > /* The current position is the `Component Flag'. */ > switch (entry->data[pos] & 30) > > _______________________________________________ > Grub-devel mailing list > Grub-devel@gnu.org > https://lists.gnu.org/mailman/listinfo/grub-devel > --=20 Regards Vladimir '=CF=86-coder/phcoder' Serbinenko --------------enig590B68DA3B6A0B9C7343C7E2 Content-Type: application/pgp-signature; name="signature.asc" Content-Description: OpenPGP digital signature Content-Disposition: attachment; filename="signature.asc" -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.12 (GNU/Linux) Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org/ iF4EAREKAAYFAk921+UACgkQNak7dOguQglHtAD9HNKYK6VnwF3RMGxXgWc3Tx2R /mkHpGCdEAD2Up+GDGcBALC4eY/AtqxYk+wgaPfv+B3MZiwR7FefAfgNm56O1YFa =v/4z -----END PGP SIGNATURE----- --------------enig590B68DA3B6A0B9C7343C7E2--