kdomanski / iso9660

A go library for reading and creating ISO9660 images

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

panic name without a dot

sdir opened this issue · comments

if len(splitFileIdentifier[1]) == 0 {

runtime error: index out of range [1] with length 1

maybe

	if len(splitFileIdentifier) == 0 {
		return splitFileIdentifier[0]
	}