mirror of
https://github.com/zhigang1992/react-native.git
synced 2026-04-13 09:21:46 +08:00
Deallocate the YogaConfig memory with correct method
Summary: We've mistakenly used `free()` to free the memory, where `delete` should have been used Reviewed By: davidaurelio Differential Revision: D9042347 fbshipit-source-id: e15cec0f498409066521a6de1e3fe4b7404ec46c
This commit is contained in:
committed by
Facebook Github Bot
parent
c383138842
commit
374fd7c0cd
@@ -369,7 +369,7 @@ YGConfigRef YGConfigNew(void) {
|
||||
}
|
||||
|
||||
void YGConfigFree(const YGConfigRef config) {
|
||||
free(config);
|
||||
delete config;
|
||||
gConfigInstanceCount--;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user