Skip to content

Commit

Permalink
Fix for #29713
Browse files Browse the repository at this point in the history
  • Loading branch information
gragusa committed Oct 22, 2018
1 parent 19c32ce commit 78536e2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion stdlib/LinearAlgebra/src/factorization.jl
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ function ldiv!(Y::AbstractVecOrMat, A::Factorization, B::AbstractVecOrMat)
if m > n
ldiv!(A, B)
return copyto!(Y, view(B, 1:n, :))
else
else
return copyto!(Y, ldiv!(A, copyto!(copy(Y), view(B, 1:m, :))))
end
end
Expand Down

0 comments on commit 78536e2

Please sign in to comment.