From 53a295bca748643603a689e2d88cb8cc492386af Mon Sep 17 00:00:00 2001 From: Muxi Yan Date: Mon, 5 Feb 2018 10:16:15 -0800 Subject: [PATCH] Fix a typo --- src/objective-c/RxLibrary/GRXConcurrentWriteable.m | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/objective-c/RxLibrary/GRXConcurrentWriteable.m b/src/objective-c/RxLibrary/GRXConcurrentWriteable.m index dc801bede82..c2623134960 100644 --- a/src/objective-c/RxLibrary/GRXConcurrentWriteable.m +++ b/src/objective-c/RxLibrary/GRXConcurrentWriteable.m @@ -66,7 +66,7 @@ - (void)enqueueSuccessfulCompletion { __weak typeof(self) weakSelf = self; dispatch_async(_writeableQueue, ^{ - typeof(self) strongSelf = self; + typeof(self) strongSelf = weakSelf; if (strongSelf) { BOOL finished = NO; @synchronized (self) {