From: Dylan William Hardison Date: Tue, 11 Oct 2016 15:13:21 +0000 (-0400) Subject: remove accidental file X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=b4b59f86d560a88b91bf9a5325e6bad8d7d2a990;p=thirdparty%2Fbugzilla.git remove accidental file --- diff --git a/memtaint.pl b/memtaint.pl deleted file mode 100644 index 54072dc49..000000000 --- a/memtaint.pl +++ /dev/null @@ -1,14 +0,0 @@ -use Cache::Memcached::Fast; -use Devel::Peek; - -my $mc = Cache::Memcached::Fast->new( { servers => ['127.0.0.1:11211'] }); - -my $v=[$ENV{PATH}]; - -Dump($v->[0]); - -$mc->set("taint", $v); - -Dump($v->[0]); - -Dump($mc->get("taint")->[0]);