Displaying 2 results from an estimated 2 matches for "n795".
Did you mean:
795
2014 May 12
1
[PATCH] isohybrid: fix overflow on 32 bit system
...to fseeko with the appropriate type being off_t.
And for GPT names it should really use 16-bit UTF-16LE characters
and not 8-bit characters padded up by the same number of
random bytes from the program memory.
See e.g.:
http://git.kernel.org/cgit/boot/syslinux/syslinux.git/tree/utils/isohybrid.c#n795
This problem and more are reported in
http://www.syslinux.org/archives/2012-May/017843.html
http://www.syslinux.org/archives/2012-May/017871.html
Fedora image (by isohybrid.c):
GPT partition name : 1 49534f4879627269642049534f0049534f487962726964004170706c
Archlinux (by libisofs):
GPT p...
2014 May 12
4
[PATCH] isohybrid: fix overflow on 32 bit system
When call isohybrid with option '-u', it overflows on a 32 bits host. It
seeks to 512 bytes before the end of the image to install gpt header. If
the size of image is larger than LONG_MAX, it overflows fseek() and
cause error:
isohybrid: wrlinux-image-x86-64-20140505110100.iso: seek error - 8: Invalid argument
Check the offset and call fseek() multi-times if offset is too large.