Patch is simple: Patch is simple: Change these lines in internal/dcraw_common.cpp/parse_fuji() if ((tag = get4()) > 10000) tag = get4(); width = tag; to these if ((tag = get4()) > 10000) tag = get4(); if (tag > 10000) tag = get4(); width = tag; (In FW 4.0 extra 4 bytes to binary data has added) -- Alex Tutubalin @LibRaw LLC reply
Patch is simple:
Change these lines in internal/dcraw_common.cpp/parse_fuji()
to these
(In FW 4.0 extra 4 bytes to binary data has added)