From 90fbb1833741bd86babb36c2631ba07cb07a47ed Mon Sep 17 00:00:00 2001 From: Timofey Solomko Date: Sat, 11 Nov 2017 13:24:34 +0300 Subject: [PATCH] 7z file name can no longer be nil --- Sources/7-Zip/7zFileInfo.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Sources/7-Zip/7zFileInfo.swift b/Sources/7-Zip/7zFileInfo.swift index 68539af6..7d34c4db 100644 --- a/Sources/7-Zip/7zFileInfo.swift +++ b/Sources/7-Zip/7zFileInfo.swift @@ -11,7 +11,7 @@ class SevenZipFileInfo { var isEmptyStream = false var isEmptyFile = false var isAntiFile = false - var name: String? + var name: String = "" var cTime: UInt64? var mTime: UInt64? var aTime: UInt64?