search for: wrlinux

Displaying 6 results from an estimated 6 matches for "wrlinux".

Did you mean: drlinux
2014 May 12
2
[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. >> >> Signed-off-by: Kai Kang <kai.kang at windriver.com> > NAK. > > The right thing to do is compile it with #define...
2014 May 13
2
[PATCH] isohybrid: fix overflow on 32 bit system
...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. >>>> Signed-off-by: Kai Kang <kai.kang at windriver.com> >>> NAK. >>> >>> The right...
2014 May 12
0
[PATCH] isohybrid: fix overflow on 32 bit system
...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. >>> >>> Signed-off-by: Kai Kang <kai.kang at windriver.com> >> NAK. >> >> The right thi...
2014 May 13
0
[PATCH] isohybrid: fix overflow on 32 bit system
...gt; 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. >>>>> Signed-off-by: Kai Kang <kai.kang at windriver.com> >>>> NAK. >>&gt...
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. Signed-off-by: Kai Kang <kai.kang at windriver.com> --- utils/isohybrid.c | 14 +++++++++++--- 1 file changed, 11 insertions(+), 3 deletions(-) diff --gi...
2014 May 12
0
[PATCH] isohybrid: fix overflow on 32 bit system
...56 PM, Kai Kang wrote: > 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. > > Signed-off-by: Kai Kang <kai.kang at windriver.com> NAK. The right thing to do is compile it with #define _FILE_OFFSET_BITS 64 and ch...