Changes between Initial Version and Version 1 of Ticket #3537


Ignore:
Timestamp:
10/16/15 16:55:38 (9 years ago)
Author:
andrew_b
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #3537

    • Property Component changed from mc-core to mc-vfs
  • Ticket #3537 – Description

    initial v1  
    11There appears to be an easy bug in iso9660 helper: 
    22 
    3 if (name ~ /^\.\.?/) next 
     3{{{if (name ~ /^\.\.?/) next}}} 
    44 
    55means "skip all lines which start with one or two dots". 
    6 Author probably meant: if (name ~ /^\.\.?$/) next 
     6Author probably meant: {{{if (name ~ /^\.\.?$/) next}}} 
    77 
    88I propose to not be cryptic and just check both possibilities separately.