Fix memory leak in RCTSafeAreaView

Summary:
According to the retain code collector, RCTSafeAreaView is in a cycle:
-> _bridge -> RCTCxxBridge -> _moduleDataByName -> __NSDictionaryM -> RCTModuleData -> _instance -> RCTUIManager -> _viewRegistry -> __NSDictionaryM -> RCTSafeAreaView
This should break the cycle.

Reviewed By: shergin

Differential Revision: D6213668

fbshipit-source-id: efb9c1dd148b72f66fe4485b81c16cd4c2d18b17
This commit is contained in:
Mehdi Mulani 2017-11-02 08:44:10 -07:00 коммит произвёл Facebook Github Bot
Родитель 02f7c61cdd
Коммит b8a5136d22
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -15,7 +15,7 @@
#import "RCTSafeAreaViewLocalData.h"
@implementation RCTSafeAreaView {
RCTBridge *_bridge;
__weak RCTBridge *_bridge;
UIEdgeInsets _currentSafeAreaInsets;
}