Fix segfault when calling "i3 -C".
Commit 287a0b4
introduced a segfault when validating the i3 config
as the root_screen will not be set in this case, causing a null
pointer dereference.
fixes #2144
This commit is contained in:
@ -22,13 +22,6 @@ use Cwd qw(abs_path);
|
||||
use File::Temp qw(tempfile tempdir);
|
||||
use v5.10;
|
||||
|
||||
# reads in a whole file
|
||||
sub slurp {
|
||||
open my $fh, '<', shift;
|
||||
local $/;
|
||||
<$fh>;
|
||||
}
|
||||
|
||||
sub migrate_config {
|
||||
my ($config) = @_;
|
||||
|
||||
|
Reference in New Issue
Block a user