You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In the pull request at erlang/otp#8537, specifically in commit erlang/otp@8d537f5, the CWD is rebuilt using filename:join/2. However, dest_path was not converted from binary to charlist:
In the pull request at erlang/otp#8537, specifically in commit erlang/otp@8d537f5, the
CWD
is rebuilt usingfilename:join/2
. However,dest_path
was not converted from binary to charlist:xlsxir/lib/xlsxir/unzip.ex
Lines 153 to 154 in 4dbebf2
As a result,
filename:join/2
returns a binary filename that fails to concatenate withTrailingSlash
, which is a charlist: https://github.com/erlang/otp/blob/94d3cd6/lib/stdlib/src/zip.erl#L2330The text was updated successfully, but these errors were encountered: