Skip to content

Commit

Permalink
fix #31758: out of bounds write in sparse broadcast (#31763)
Browse files Browse the repository at this point in the history
(cherry picked from commit c0c6f96)
  • Loading branch information
fredrikekre authored and KristofferC committed Apr 20, 2019
1 parent 0ed3903 commit 031c35c
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 1 deletion.
2 changes: 1 addition & 1 deletion stdlib/SparseArrays/src/higherorderfns.jl
Original file line number Diff line number Diff line change
Expand Up @@ -383,7 +383,7 @@ function _map_zeropres!(f::Tf, C::SparseVecOrMat, As::Vararg{SparseVecOrMat,N})
vals, ks, rows = _fusedupdate_all(rowsentinel, activerow, rows, ks, stopks, As)
Cx = f(vals...)
if !_iszero(Cx)
Ck > spaceC && (spaceC = expandstorage!(C, Ck + min(length(C), _sumnnzs(As...)) - (sum(ks) - N)))
Ck > spaceC && (spaceC = expandstorage!(C, min(length(C), Ck + _sumnnzs(As...) - (sum(ks) - N))))
storedinds(C)[Ck] = activerow
storedvals(C)[Ck] = Cx
Ck += 1
Expand Down
10 changes: 10 additions & 0 deletions stdlib/SparseArrays/test/higherorderfns.jl
Original file line number Diff line number Diff line change
Expand Up @@ -632,4 +632,14 @@ end
@test minimum(sparse([1, 2], [1, 2], ones(Int32, 2)), dims = 1) isa Matrix
end

@testset "issue #31758: out of bounds write in _map_zeropres!" begin
y = sparsevec([2,7], [1., 2.], 10)
x1 = sparsevec(fill(1.0, 10))
x2 = sparsevec([2,7], [1., 2.], 10)
x3 = sparsevec(fill(1.0, 10))
f(x, y, z) = x == y == z == 0 ? 0.0 : NaN
y .= f.(x1, x2, x3)
@test all(isnan, y)
end

end # module

0 comments on commit 031c35c

Please sign in to comment.