File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
AppReceiptValidator/AppReceiptValidator Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -117,13 +117,13 @@ private extension AppReceiptValidator {
117117 var sha1Context = SHA_CTX ( )
118118
119119 SHA1_Init ( & sha1Context)
120- _ = deviceIdentifierData. withUnsafeBytes { pointer -> Void in
120+ deviceIdentifierData. withUnsafeBytes { pointer -> Void in
121121 SHA1_Update ( & sha1Context, pointer. baseAddress, deviceIdentifierData. count)
122122 }
123- _ = receiptOpaqueValueData. withUnsafeBytes { pointer -> Void in
123+ receiptOpaqueValueData. withUnsafeBytes { pointer -> Void in
124124 SHA1_Update ( & sha1Context, pointer. baseAddress, receiptOpaqueValueData. count)
125125 }
126- _ = receiptBundleIdData. withUnsafeBytes { pointer -> Void in
126+ receiptBundleIdData. withUnsafeBytes { pointer -> Void in
127127 SHA1_Update ( & sha1Context, pointer. baseAddress, receiptBundleIdData. count)
128128 }
129129 SHA1_Final ( & computedHash, & sha1Context)
You can’t perform that action at this time.
0 commit comments