002-fix-endianess.patch 641 B

12345678910111213
  1. Index: util-linux-2.21.2/libblkid/src/superblocks/swap.c
  2. ===================================================================
  3. --- util-linux-2.21.2.orig/libblkid/src/superblocks/swap.c 2012-05-15 13:51:45.814410455 +0200
  4. +++ util-linux-2.21.2/libblkid/src/superblocks/swap.c 2013-06-12 23:23:03.270742199 +0200
  5. @@ -48,7 +48,7 @@
  6. /* SWAPSPACE2 - check for wrong version or zeroed pagecount */
  7. if (strcmp(version, "2") == 0 &&
  8. - (hdr->version != 1 || hdr->lastpage == 0))
  9. + ((hdr->version != 1 && swab32(hdr->version) != 1) || hdr->lastpage == 0))
  10. return -1;
  11. /* arbitrary sanity check.. is there any garbage down there? */