> Saving .xcf on full filesystem hangs GIMP > http://bugzilla.gnome.org/show_bug.cgi?id=101340 > > doesn't seem overly complicated since there's only one call to fwrite() > in app/xcf.c which needs to have its return_value to be checked. The > larger part of the problem is to propate the error up from > xcf_write_int8(). Note that just checking write() or fwrite() return values may not be enough: some filesystems delay the error indictation until close() is called on the fd. So this bug may well be influenced by the filesystem GIMP is writing to at the time. Just a detail to bear in mind... Austin