fix: Incorrect detection of open ZLIB handles#12022
fix: Incorrect detection of open ZLIB handles#12022SimenB merged 1 commit intojestjs:mainfrom oliversalzburg:fix/11542
Conversation
Codecov Report
@@ Coverage Diff @@
## main #12022 +/- ##
=======================================
Coverage 68.77% 68.77%
=======================================
Files 324 324
Lines 16669 16670 +1
Branches 4813 4814 +1
=======================================
+ Hits 11464 11465 +1
Misses 5172 5172
Partials 33 33
Continue to review full report at Codecov.
|
SimenB
left a comment
There was a problem hiding this comment.
thanks! could you add a changelog entry as well? 🙂
It appears that some calls into `zlib` are detected as incorrectly being open. This change ignores open handles in the ZLIB context. Fixes #11542
|
Sorry for missing that. I assumed the changelog is automatically generated from git changes. I hope it's good now. |
|
This pull request has been automatically locked since there has not been any recent activity after it was closed. Please open a new issue for related bugs. |
Summary
It appears that some calls into
zlibare detected as incorrectly being open. This change ignores open handles in the ZLIB context.Fixes #11542
Test plan
I added a test for this specific scenario. Before this change is applied, the test fails as expected. With this change applied, the test passes.