From ff3b821e47e1117e082db1298267716f56c678ad Mon Sep 17 00:00:00 2001 From: Guillem Jover Date: Thu, 24 Jan 2019 18:57:43 +0100 Subject: [PATCH] TT#50954 Use <<>> instead of <> as that has unsafe semantics Change-Id: I6462d853f5669678357b72215b453414f683337d --- utils/const_str_hash | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/utils/const_str_hash b/utils/const_str_hash index e17d3c177..349ccf1f2 100755 --- a/utils/const_str_hash +++ b/utils/const_str_hash @@ -13,7 +13,7 @@ my %key_vals; # collect keywords and rewrite input file with in lookup keys -while (my $line = <>) { +while (my $line = <<>>) { if (!($line =~ s/CSH_LOOKUP\("(.*?)"\)/{}/)) { $rewritten_input .= $line; next;