We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 741bb37 commit 595edc5Copy full SHA for 595edc5
1 file changed
Sources/BSD/Core/Extensions/CSOps.swift
@@ -374,7 +374,8 @@ extension BSD {
374
/// Gets the full blob.
375
dataIn: Data(repeating: 0, count: Int(actualLength))
376
)
377
- return dataOut
+ // Strip the header from the returned data.
378
+ return dataOut.subdata(in: self.blobHeaderSize..<dataOut.count)
379
}
380
381
/// Gets the entitlements blob (XML).
0 commit comments