From: Alan Knowles Date: Tue, 7 Aug 2018 08:33:28 +0000 (+0800) Subject: src/strip.vala X-Git-Url: http://git.roojs.org/?p=app.mailtrimmer;a=commitdiff_plain;h=2055295d4940963d00ab80e95539bb53e3f88fd3 src/strip.vala --- diff --git a/src/strip.vala b/src/strip.vala index 10ee034..a30e35e 100644 --- a/src/strip.vala +++ b/src/strip.vala @@ -556,6 +556,9 @@ public class Strip : GLib.Object { "/"+ this.active_name + "."+ GLib.Uri.escape_string(filename,"", false); var outfile = new GMime.StreamFile.for_path(fn, "w"); + if (outfile == null) { + return; // something has gone wrong?? + } outfile.set_owner(true); var file_size = (int) c.write_to_stream(outfile); var chksum = this.md5_file(fn);