diff options
| author | Martin Owens <doctormo@gmail.com> | 2014-01-27 18:19:30 +0000 |
|---|---|---|
| committer | Martin Owens <doctormo@gmail.com> | 2014-01-27 18:19:30 +0000 |
| commit | fd1ceb05805f20402606fd9fae1a048e0bca8e78 (patch) | |
| tree | fc1d38325e4d55dc62aa2c512b5eba7bf7604752 /src/helper/png-write.cpp | |
| parent | Protect export options from blank filenames, png, pdf, emf and wmf. This shou... (diff) | |
| download | inkscape-fd1ceb05805f20402606fd9fae1a048e0bca8e78.tar.gz inkscape-fd1ceb05805f20402606fd9fae1a048e0bca8e78.zip | |
Protect pdf and png exports from failure and output reasonalbe warnings.
(bzr r12982)
Diffstat (limited to 'src/helper/png-write.cpp')
| -rw-r--r-- | src/helper/png-write.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/helper/png-write.cpp b/src/helper/png-write.cpp index b8b815b4c..a16fe8e12 100644 --- a/src/helper/png-write.cpp +++ b/src/helper/png-write.cpp @@ -142,7 +142,7 @@ sp_png_write_rgba_striped(SPDocument *doc, Inkscape::IO::dump_fopen_call(filename, "M"); fp = Inkscape::IO::fopen_utf8name(filename, "wb"); - g_return_val_if_fail(fp != NULL, false); + if(fp == NULL) return false; /* Create and initialize the png_struct with the desired error handler * functions. If you want to use the default stderr and longjump method, |
