Fix reporting Python reference leaks with WITH_PYTHON_SAFETY

Error in f3e26c847b
This commit is contained in:
Campbell Barton 2021-08-24 14:36:25 +10:00
parent 8b55cda048
commit e0a6001a22
1 changed files with 1 additions and 1 deletions

View File

@ -7774,7 +7774,7 @@ void BPY_rna_exit(void)
* will crash giving a useful error with address sanitizer. The likely cause
* for this list not being empty is a missing call to: #BKE_libblock_free_data_py. */
const int id_weakref_pool_len = BLI_ghash_len(id_weakref_pool);
if (id_weakref_pool_len != id_weakref_pool_len) {
if (id_weakref_pool_len != 0) {
printf("Found %d unreleased ID's\n", id_weakref_pool_len);
GHashIterator gh_iter;
GHASH_ITER (gh_iter, id_weakref_pool) {