Skip to content

Commit

Permalink
Merge pull request #5781 from garlick/issue#5706
Browse files Browse the repository at this point in the history
modules/content: drop incorrect assertion
  • Loading branch information
mergify[bot] committed Mar 9, 2024
2 parents 0a8e91a + b53f8ee commit 00a7970
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/modules/content/cache.c
Original file line number Diff line number Diff line change
Expand Up @@ -190,8 +190,8 @@ static void cache_entry_destroy (struct cache_entry *e)
{
if (e) {
int saved_errno = errno;
assert (e->load_requests == NULL);
assert (e->store_requests == NULL);
msgstack_destroy (&e->load_requests);
msgstack_destroy (&e->store_requests);
if (e->mmapped)
content_mmap_region_decref (e->data_container);
else
Expand Down

0 comments on commit 00a7970

Please sign in to comment.