From 2055295d4940963d00ab80e95539bb53e3f88fd3 Mon Sep 17 00:00:00 2001 From: Alan Knowles Date: Tue, 7 Aug 2018 16:33:28 +0800 Subject: [PATCH] src/strip.vala --- src/strip.vala | 3 +++ 1 file changed, 3 insertions(+) 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); -- 2.39.2