X-Git-Url: http://git.vpit.fr/?p=perl%2Fscripts%2Fxchat.git;a=blobdiff_plain;f=Xchat%2FXPI%2FUtils.pm;h=c8994abd6b5e7ed616be2247390560e9c074a31f;hp=0b4bff91b7266fa72e4ff65c617e81e9d310efcb;hb=HEAD;hpb=707ebbe12e6aaada84a123ae0c36215d49b5223d diff --git a/Xchat/XPI/Utils.pm b/Xchat/XPI/Utils.pm index 0b4bff9..c8994ab 100644 --- a/Xchat/XPI/Utils.pm +++ b/Xchat/XPI/Utils.pm @@ -51,9 +51,10 @@ sub local_context { return unless @_ >= 2; my $code = pop; my $new_cxt = (@_ == 1) ? $_[0] : find_context(@_); + return undef unless defined $new_cxt; my $cur_cxt = get_context; + my $guard = bless \$cur_cxt, 'Xchat::XPI::Utils::ContextGuard'; if (set_context $new_cxt) { - my $guard = bless \$cur_cxt, 'Xchat::XPI::Utils::ContextGuard'; return $code->(); } else { return undef;