Assigned RUSTSEC-2026-0151 to jxl-grid

This commit is contained in:
djc
2026-05-29 16:34:01 +00:00
committed by Dirkjan Ochtman
parent 794f71dd88
commit af256cd40c
2 changed files with 4 additions and 4 deletions

View File

@@ -1,3 +1,3 @@
This file causes merge conflicts if two ID assignment jobs run concurrently.
This prevents duplicate ID assignment due to a race between those jobs.
e7cdae83db5964a64475609e04a1da70f0ce05f858fe9d3c0956d87ecfabe66c -
0131a00f04e350a560b49757ff37106314ac699f79a1ac83b8d63f4cde9710de -

View File

@@ -1,6 +1,6 @@
```toml
[advisory]
id = "RUSTSEC-0000-0000"
id = "RUSTSEC-2026-0151"
package = "jxl-grid"
date = "2026-05-29"
url = "https://github.com/tirr-c/jxl-oxide/security/advisories/GHSA-5pmv-rx8r-wmv5"
@@ -34,8 +34,8 @@ mod miri_ub {
#[test]
fn aligned_grid_dimension_product_overflows() {
let width = usize::MAX / 2 + 1;
let mut grid = AlignedGrid::<u8>::with_alloc_tracker(width, 2, None).unwrap();
let mut subgrid = grid.as_subgrid_mut();
id = "RUSTSEC-2026-0151"
id = "RUSTSEC-2026-0151"
*subgrid.get_mut(0, 1) = 1;
std::hint::black_box(grid);
}