Skip to content

Commit

Permalink
fix(debuginfo): Update dmsort to 1.0.1 to avoid panic due to UB (#287)
Browse files Browse the repository at this point in the history
dmsort 1.0 misuses `mem::uninitialized` which is now leading to a panic
which causes problems for certain symbols.

Refs emilk/drop-merge-sort#2
  • Loading branch information
mitsuhiko authored Nov 12, 2020
1 parent aacd57b commit f4489e0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion symbolic-debuginfo/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ exclude = [
all-features = true

[dependencies]
dmsort = "1.0.0"
dmsort = "1.0.1"
fallible-iterator = "0.2.0"
flate2 = { version = "1.0.13", features = ["rust_backend"], default-features = false }
gimli = { version = "0.22.0", features = ["read", "std"], default-features = false }
Expand Down
2 changes: 1 addition & 1 deletion symbolic-symcache/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ exclude = [
all-features = true

[dependencies]
dmsort = "1.0.0"
dmsort = "1.0.1"
fnv = "1.0.6"
num = "0.3.0"
symbolic-common = { version = "7.5.0", path = "../symbolic-common" }
Expand Down

0 comments on commit f4489e0

Please sign in to comment.