Skip to content

Commit 0cfb20d

Browse files
committed
Auto merge of #1244 - RalfJung:readme, r=RalfJung
README updates
2 parents 22de464 + 3a5f601 commit 0cfb20d

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

README.md

+4-2
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,8 @@ program, and cannot run all programs:
2929
positives here, so if you program runs fine in Miri right now that is by no
3030
means a guarantee that it is UB-free when these questions get answered.
3131

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.
3434
* If the program relies on unspecified details of how data is laid out, it will
3535
still run fine in Miri -- but might break (including causing UB) on different
3636
compiler versions or different platforms.
@@ -243,6 +243,7 @@ Definite bugs found:
243243
* [The Unix allocator calling `posix_memalign` in an invalid way](https://github.com/rust-lang/rust/issues/62251)
244244
* [`getrandom` calling the `getrandom` syscall in an invalid way](https://github.com/rust-random/getrandom/pull/73)
245245
* [`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)
246247

247248
Violations of [Stacked Borrows] found that are likely bugs (but Stacked Borrows is currently just an experiment):
248249

@@ -251,6 +252,7 @@ Violations of [Stacked Borrows] found that are likely bugs (but Stacked Borrows
251252
* [`LinkedList` creating overlapping mutable references](https://github.com/rust-lang/rust/pull/60072)
252253
* [`Vec::push` invalidating existing references into the vector](https://github.com/rust-lang/rust/issues/60847)
253254
* [`align_to_mut` violating uniqueness of mutable references](https://github.com/rust-lang/rust/issues/68549)
255+
* [Aliasing mutable references in `sized-chunks`](https://github.com/bodil/sized-chunks/issues/8)
254256

255257
## License
256258

0 commit comments

Comments
 (0)