changeset 554:bb0c841aeb8f

fix update_context.pl when empty line
author anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
date Mon, 18 Nov 2019 18:25:37 +0900
parents e9b1f533e587
children bcc137ca91da
files src/parallel_execution/update_context.pl
diffstat 1 files changed, 4 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/src/parallel_execution/update_context.pl	Thu Nov 14 15:08:08 2019 +0900
+++ b/src/parallel_execution/update_context.pl	Mon Nov 18 18:25:37 2019 +0900
@@ -75,6 +75,10 @@
       next;
     }
 
+    if ($line =~ /^\s+$/) {
+      next;
+    }
+
     $line =~ s/\s*([\w\s\*]+);\s*/$1/;
     push(@{$h2context->{data}},$1);
   }