| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
`ArrayBufferViewContents` supports `ArrayBuffer`s, so we do not need to provide special treatment for those. Also, small typed arrays may not have backing stores until their corresponding `ArrayBuffer`s are accessed, so do that in order to avoid accidentally accessing arbitrary stack memory. Signed-off-by: Anna Henningsen <anna@addaleax.net>
Codecov Report❌ Patch coverage is 65.00000% with 7 lines in your changes missing coverage. Please review.
@@ Coverage Diff @@
## main #62857 +/- ##
==========================================
- Coverage 89.64% 89.62% -0.03%
==========================================
Files 706 706
Lines 219137 219124 -13
Branches 41999 41981 -18
==========================================
- Hits 196453 196386 -67
- Misses 14574 14619 +45
- Partials 8110 8119 +9
... and 30 files with indirect coverage changes 🚀 New features to boost your workflow:
|
Sorry, something went wrong.
Sorry, something went wrong.
Sorry, something went wrong.
`ArrayBufferViewContents` supports `ArrayBuffer`s, so we do not need to provide special treatment for those. Also, small typed arrays may not have backing stores until their corresponding `ArrayBuffer`s are accessed, so do that in order to avoid accidentally accessing arbitrary stack memory. Signed-off-by: Anna Henningsen <anna@addaleax.net> PR-URL: #62857 Reviewed-By: Paolo Insogna <paolo@cowtech.it> Reviewed-By: Daeyeon Jeong <daeyeon.dev@gmail.com>
| Back | FazBrowse Home | New Git URL |
ArrayBufferViewContents supports ArrayBuffers, so we do not need to provide special treatment for those.
Also, small typed arrays may not have backing stores until their corresponding ArrayBuffers are accessed, so do that in order to avoid accidentally accessing arbitrary stack memory.