]> ruderich.org/simon Gitweb - fcscs/fcscs.git/commitdiff
add missing "or die $!;"
authorSimon Ruderich <simon@ruderich.org>
Mon, 1 Feb 2016 07:52:44 +0000 (08:52 +0100)
committerSimon Ruderich <simon@ruderich.org>
Mon, 1 Feb 2016 07:52:44 +0000 (08:52 +0100)
bin/fcscs

index da614bc396b3af1d6214d42aec7f425fc9fe118f..27c133a35a71388f2c66f0c13fbfb976d3190e98 100755 (executable)
--- a/bin/fcscs
+++ b/bin/fcscs
@@ -370,7 +370,7 @@ package Screen {
         foreach (@args) {
             $_ = $self->encode($_);
         }
-        say $fh "$module: @args";
+        say $fh "$module: @args" or CORE::die $!;
         return;
     }
 
@@ -878,7 +878,7 @@ sub handler_yank {
     # Use a temporary file to prevent leaking the yanked data to other users
     # with the command line, e.g. ps aux or top.
     my ($fh, $tmp) = File::Temp::tempfile(); # dies on its own
-    print $fh $screen->encode($match->{value});
+    print $fh $screen->encode($match->{value}) or die $!;
     close $fh or die $!;
 
     if ($config->{setting}{multiplexer} eq 'screen') {