Fixed (unreported) memleak in recent BMain relations new code.

Forgot to free the GHash iterator.
This commit is contained in:
Bastien Montagne 2021-02-09 21:38:57 +01:00
parent 510db9512f
commit 87c75767b3
1 changed files with 4 additions and 1 deletions

View File

@ -317,7 +317,9 @@ void BKE_main_relations_tag_set(struct Main *bmain,
if (bmain->relations == NULL) {
return;
}
for (GHashIterator *gh_iter = BLI_ghashIterator_new(bmain->relations->relations_from_pointers);
GHashIterator *gh_iter;
for (gh_iter = BLI_ghashIterator_new(bmain->relations->relations_from_pointers);
!BLI_ghashIterator_done(gh_iter);
BLI_ghashIterator_step(gh_iter)) {
MainIDRelationsEntry *entry = BLI_ghashIterator_getValue(gh_iter);
@ -328,6 +330,7 @@ void BKE_main_relations_tag_set(struct Main *bmain,
entry->tags &= ~tag;
}
}
BLI_ghashIterator_free(gh_iter);
}
/**