Changes between Initial Version and Version 1 of Ticket #3537
- Timestamp:
- 10/16/15 16:55:38 (9 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #3537
- Property Component changed from mc-core to mc-vfs
-
Ticket #3537 – Description
initial v1 1 1 There appears to be an easy bug in iso9660 helper: 2 2 3 if (name ~ /^\.\.?/) next 3 {{{if (name ~ /^\.\.?/) next}}} 4 4 5 5 means "skip all lines which start with one or two dots". 6 Author probably meant: if (name ~ /^\.\.?$/) next6 Author probably meant: {{{if (name ~ /^\.\.?$/) next}}} 7 7 8 8 I propose to not be cryptic and just check both possibilities separately.