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:
parent
c383138842
commit
374fd7c0cd
|
@ -369,7 +369,7 @@ YGConfigRef YGConfigNew(void) {
|
|||
}
|
||||
|
||||
void YGConfigFree(const YGConfigRef config) {
|
||||
free(config);
|
||||
delete config;
|
||||
gConfigInstanceCount--;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue