Does the official version you have include ufraw-gimp? If not, can you move ufraw-gimp out of the plug-ins folder and retry the tiff file and let me know if you have issues.
/* if UFRaw fails on jpg/jpeg or tif/tiff then open with GIMP */
if (uf == NULL) {
if (!strcasecmp(filename + strlen(filename) - 4, ".jpg") ||
!strcasecmp(filename + strlen(filename) - 5, ".jpeg")) {
if (loadThumbnail)
*return_vals = gimp_run_procedure2("file_jpeg_load_thumb",
nreturn_vals, nparams, param);
else
*return_vals = gimp_run_procedure2("file_jpeg_load",
nreturn_vals, nparams, param);
gdk_threads_leave();
return;
} else if (!strcasecmp(filename + strlen(filename) - 4, ".tif") ||
!strcasecmp(filename + strlen(filename) - 5, ".tiff")) {
if (!loadThumbnail)
*return_vals = gimp_run_procedure2("file_tiff_load",
nreturn_vals, nparams, param);
else {
/* There is no "file_tiff_load_thumb".
* The call to "file_ufraw_load" will handle the thumbnail */
/* Following is another solution for tiff thumbnails
GimpParam tiffParam[3];
tiffParam[0].type = GIMP_PDB_INT32;
tiffParam[0].data.d_int32 = GIMP_RUN_NONINTERACTIVE;
tiffParam[1].type = GIMP_PDB_STRING;
tiffParam[1].data.d_string = filename;
tiffParam[2].type = GIMP_PDB_STRING;
tiffParam[2].data.d_string = filename;
*return_vals = gimp_run_procedure2 ("file_tiff_load",
nreturn_vals, 3, tiffParam);
*/
}
gdk_threads_leave();
return;
} else {
......
</code>
BTW, when I started this thread, I explicitly stated that I was reporting the issue with gimp from git. I guess I should have mentioned that it was the master branch (2.9.1). :(