Skip to content

Commit 5fd7802

Browse files
committed
Fixed Static Analyzer Issue and Updated version String
Fixed SA issue. Added continue to exit from loop if class is instance type.
1 parent 493c540 commit 5fd7802

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

Branch/BNCEncoder.m

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,7 @@ + (NSError*_Nullable) decodeInstance:(id)instance
3232
void* ivarPtr = nil;
3333
if (class == instance) {
3434
// instance is a class, so there aren't any ivar values.
35+
continue;
3536
} else if (encoding[0] == '@' || encoding[0] == '#') {
3637
ivarPtr = (__bridge void*) object_getIvar(instance, ivars[i]);
3738
} else {

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Branch Mac SDK Change Log
22

3-
## v1.4.0 - Aug 16, 2022
3+
## 1.4.0 - Aug 16, 2022
44

55
SDK-1405
66
Branch QR codes functionality added.

0 commit comments

Comments
 (0)