Author: aurel32 Date: 2011-09-19 14:34:03 +0000 (Mon, 19 Sep 2011) New Revision: 4977
Modified: glibc-package/trunk/debian/changelog glibc-package/trunk/debian/patches/i386/local-cpuid-level2.diff Log: * patches/i386/local-cpuid-level2.diff: fix a typo. Closes: #609389. Modified: glibc-package/trunk/debian/changelog =================================================================== --- glibc-package/trunk/debian/changelog 2011-09-19 14:31:56 UTC (rev 4976) +++ glibc-package/trunk/debian/changelog 2011-09-19 14:34:03 UTC (rev 4977) @@ -1,3 +1,9 @@ +eglibc (2.13-22) UNRELEASED; urgency=low + + * patches/i386/local-cpuid-level2.diff: fix a typo. Closes: #609389. + + -- Aurelien Jarno <[email protected]> Mon, 19 Sep 2011 16:32:32 +0200 + eglibc (2.13-21) unstable; urgency=low [ Samuel Thibault ] Modified: glibc-package/trunk/debian/patches/i386/local-cpuid-level2.diff =================================================================== --- glibc-package/trunk/debian/patches/i386/local-cpuid-level2.diff 2011-09-19 14:31:56 UTC (rev 4976) +++ glibc-package/trunk/debian/patches/i386/local-cpuid-level2.diff 2011-09-19 14:34:03 UTC (rev 4977) @@ -9,7 +9,7 @@ handle_intel (int name, unsigned int maxidx) { - assert (maxidx >= 2); -+ if (maxidx <= 2) ++ if (maxidx < 2) + { + /* This should never happen as all Intel i686 CPU support a CPUID + level of 2 minimum. However valgrind sometimes load the i686 -- To UNSUBSCRIBE, email to [email protected] with a subject of "unsubscribe". Trouble? Contact [email protected] Archive: http://lists.debian.org/[email protected]

