Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion Sources/OpenSwiftUICore/Data/Protobuf/ProtobufDecoder.swift
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
//
// Audited for iOS 18.0
// Status: Complete
// ID: FFA06CAF6B06DC3E21EC75547A0CD421
// ID: FFA06CAF6B06DC3E21EC75547A0CD421 (SwiftUICore)

package import Foundation

Expand Down Expand Up @@ -65,6 +65,8 @@
return packedField
} else if packedEnd < ptr {
throw DecodingError.failed
} else {
packedField = Field(rawValue: 0)

Check warning on line 69 in Sources/OpenSwiftUICore/Data/Protobuf/ProtobufDecoder.swift

View check run for this annotation

Codecov / codecov/patch

Sources/OpenSwiftUICore/Data/Protobuf/ProtobufDecoder.swift#L68-L69

Added lines #L68 - L69 were not covered by tests
}
}
let result = try decodeVariant()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
//
// Audited for iOS 18.0
// Status: Complete
// ID: C7B3AAD101AF9EA76FC322BD6EF713E6
// ID: C7B3AAD101AF9EA76FC322BD6EF713E6 (SwiftUICore)

package import Foundation

Expand Down
Loading