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
Copy file name to clipboardExpand all lines: README.md
+4-2
Original file line number
Diff line number
Diff line change
@@ -29,8 +29,8 @@ program, and cannot run all programs:
29
29
positives here, so if you program runs fine in Miri right now that is by no
30
30
means a guarantee that it is UB-free when these questions get answered.
31
31
32
-
In particular, Miri does currently not check that integers are initialized
33
-
or that references point to valid data.
32
+
In particular, Miri does currently not check that integers/floats are
33
+
initialized or that references point to valid data.
34
34
* If the program relies on unspecified details of how data is laid out, it will
35
35
still run fine in Miri -- but might break (including causing UB) on different
36
36
compiler versions or different platforms.
@@ -243,6 +243,7 @@ Definite bugs found:
243
243
*[The Unix allocator calling `posix_memalign` in an invalid way](https://github.com/rust-lang/rust/issues/62251)
244
244
*[`getrandom` calling the `getrandom` syscall in an invalid way](https://github.com/rust-random/getrandom/pull/73)
245
245
*[`Vec`](https://github.com/rust-lang/rust/issues/69770) and [`BTreeMap`](https://github.com/rust-lang/rust/issues/69769) leaking memory under some (panicky) conditions
246
+
*[Memory leak in `beef`](https://github.com/maciejhirsz/beef/issues/12)
246
247
247
248
Violations of [Stacked Borrows] found that are likely bugs (but Stacked Borrows is currently just an experiment):
248
249
@@ -251,6 +252,7 @@ Violations of [Stacked Borrows] found that are likely bugs (but Stacked Borrows
0 commit comments