- Timestamp:
- 02/08/06 21:33:08 (6 years ago)
- Location:
- MMagic/trunk
- Files:
-
- 2 modified
Legend:
- Unmodified
- Added
- Removed
-
MMagic/trunk/ChangeLog
r198 r202 1 2006-02-08 Yukio USUDA <usu@namazu.org> 2 3 * MMagic.pm (magicMatch, dumpMagic): Fixed time waste problem. 4 1 5 2006-01-30 NOKUBI Takatsugu <knok@daionet.gr.jp> 2 6 -
MMagic/trunk/MMagic.pm
r198 r202 763 763 # raw string, line number, and subtests until we need the real info. 764 764 # this saves time otherwise wasted parsing unused subtests. 765 $item = readMagicLine(@$item) if @$item == 3; 765 if (@$item == 3){ 766 my $tmp = readMagicLine(@$item); 767 @$item = @$tmp; 768 } 766 769 767 770 # $item could be undef if we ran into troubles while reading … … 1321 1324 # delayed evaluation. 1322 1325 $entry = readMagicLine(@$entry) if @$entry == 3; 1326 if (@$entry == 3){ 1327 my $tmp = readMagicLine(@$entry); 1328 @$entry = @$tmp; 1329 } 1323 1330 1324 1331 next if !defined($entry);
