]> git.ipfire.org Git - thirdparty/bugzilla.git/commitdiff
remove accidental file
authorDylan William Hardison <dylan@hardison.net>
Tue, 11 Oct 2016 15:13:21 +0000 (11:13 -0400)
committerDylan William Hardison <dylan@hardison.net>
Tue, 11 Oct 2016 15:13:21 +0000 (11:13 -0400)
memtaint.pl [deleted file]

diff --git a/memtaint.pl b/memtaint.pl
deleted file mode 100644 (file)
index 54072dc..0000000
+++ /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]);