Skip to content

Commit 927ae35

Browse files
authored
[Crashlytics] Fix Xcode 14.3 Analyzer issues (#11230)
* [Crashlytics] Fix Xcode 14.3 Analyzer issues * Changelog entry
1 parent 6ee712c commit 927ae35

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Crashlytics/CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
# Unreleased
22
- [changed] Removed references to deprecated CTCarrier API in FirebaseSessions. (#11144)
3+
- [fixed] Fix Xcode 14.3 Analyzer issue. (#11228)
34

45
# 10.9.0
56
- [fixed] Updated upload-symbols to 3.15. Disabled dSYM uploads for Flutter

Crashlytics/Crashlytics/Unwind/Dwarf/FIRCLSDwarfUnwind.c

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -915,7 +915,7 @@ void FIRCLSDwarfPointerEncodingShow(const char* leadString, uint8_t encoding) {
915915
if (encoding == DW_EH_PE_omit) {
916916
FIRCLSSDKLog("%s: 0x%02x (omit)\n", leadString, encoding);
917917
} else {
918-
const char* peValue = "";
918+
const char* peValue = "unknown";
919919
const char* peOffset = "";
920920

921921
switch (encoding & DW_EH_PE_VALUE_MASK) {
@@ -950,7 +950,6 @@ void FIRCLSDwarfPointerEncodingShow(const char* leadString, uint8_t encoding) {
950950
peValue = "DW_EH_PE_sdata8";
951951
break;
952952
default:
953-
peValue = "unknown";
954953
break;
955954
}
956955

0 commit comments

Comments
 (0)