libs/web: add missing byteswap of index offset when parsing index offset of lmo files

This commit is contained in:
Jo-Philipp Wich 2013-01-26 19:57:18 +00:00
parent ad3ec0d4ee
commit bb6ba23b3d

View file

@ -123,8 +123,8 @@ lmo_archive_t * lmo_open(const char *file)
if ((ar->mmap = mmap(NULL, ar->size, PROT_READ, MAP_SHARED, ar->fd, 0)) == MAP_FAILED)
goto err;
idx_offset = *((const uint32_t *)
(ar->mmap + ar->size - sizeof(uint32_t)));
idx_offset = ntohl(*((const uint32_t *)
(ar->mmap + ar->size - sizeof(uint32_t))));
if (idx_offset >= ar->size)
goto err;