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:
Amir Shalem 2018-07-29 14:02:27 -07:00 коммит произвёл Facebook Github Bot
Родитель c383138842
Коммит 374fd7c0cd
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -369,7 +369,7 @@ YGConfigRef YGConfigNew(void) {
}
void YGConfigFree(const YGConfigRef config) {
free(config);
delete config;
gConfigInstanceCount--;
}