We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ac7bcdc commit 6bae62aCopy full SHA for 6bae62a
FirebaseDynamicLinks/CHANGELOG.md
@@ -1,3 +1,6 @@
1
+# v8.2.0
2
+- [fixed] Fixed analyze issue introduced in Xcode 12.5. (#8208)
3
+
4
# v8.0.0
5
- [fixed] Fixed crashes on simulators targeting below iOS14 on Apple Silicon. (#7989)
6
FirebaseDynamicLinks/Sources/FIRDynamicLinkNetworking.m
@@ -236,7 +236,9 @@ - (void)retrievePendingDynamicLinkWithIOSVersion:(NSString *)IOSVersion
236
error:&serializationError];
237
238
if (serializationError) {
239
- *errorPtr = serializationError;
+ if (*errorPtr) {
240
+ *errorPtr = serializationError;
241
+ }
242
return nil;
243
}
244
0 commit comments