From e5dd20f15e5290679a261a38fa7eb11d2a81965c Mon Sep 17 00:00:00 2001 From: jbjohnso Date: Wed, 17 Jul 2013 18:59:10 +0000 Subject: [PATCH] Clear $1 prior to calling plugins xcatd now might let $1 leak into the plugins. Ideally, the downstream code would check match before relying upon $1 to be undef, but better to avoid unintuitive behavior. git-svn-id: https://svn.code.sf.net/p/xcat/code/xcat-core/trunk@16997 8638fb3e-16cb-4fca-ae20-7b5d299a9bcd --- xCAT-server/sbin/xcatd | 1 + 1 file changed, 1 insertion(+) diff --git a/xCAT-server/sbin/xcatd b/xCAT-server/sbin/xcatd index 9b9d2188e..b5993d85e 100755 --- a/xCAT-server/sbin/xcatd +++ b/xCAT-server/sbin/xcatd @@ -1714,6 +1714,7 @@ sub dispatch_request { } if ($onlyone and not ($_->{'_xcatdest'} and xCAT::NetworkUtils->thishostisnot($_->{'_xcatdest'}))) { $SIG{CHLD}='DEFAULT'; + "" =~ m/()/; #clear $1 that we may have sitting around if ($_->{'_xcatdelay'} and not ref $_->{'_xcatdelay'}) { sleep $_->{'_xcatdelay'}; } ${"xCAT_plugin::".$modname."::"}{process_request}->($_,$dispatch_cb,\&do_request); return;