From: theAdib Date: Sun, 2 Aug 2009 15:04:57 +0000 (+0000) Subject: FIX 407115 test writing into file and throw exception upstream if needed X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=fb57113b7d8b482fcaf4e63fd3d11a6123a4e251;p=inkscape.git FIX 407115 test writing into file and throw exception upstream if needed --- diff --git a/src/io/uristream.cpp b/src/io/uristream.cpp index f529c7f8b..05d7f020a 100644 --- a/src/io/uristream.cpp +++ b/src/io/uristream.cpp @@ -429,7 +429,10 @@ void UriOutputStream::put(int ch) throw(StreamException) if (!outf) return; uch = (unsigned char)(ch & 0xff); - fputc(uch, outf); + if (fputc(uch, outf) == EOF) { + Glib::ustring err = "ERROR writing to file "; + throw StreamException(err); + } //fwrite(uch, 1, 1, outf); break;