On Fri, Apr 3, 2009 at 3:03 PM, ron minnich rminnich@gmail.com wrote:
attached.
if (romfs_decompress(ntohl(orom->compression), - ((unsigned char *) orom) + - sizeof(struct romfs_optionrom), + (void *) src, (void *) dest, ntohl(orom->len))) return -1;
It looks like you missed a couple of return statements. This one above was supposed to return NULL and the next one dest?
With that fixed: Acked-by: Myles Watson mylesgw@gmail.com
Thanks, Myles