Skip to content

Commit f40dd70

Browse files
committed
remove language-level UB for non-UTF-8 str
1 parent 3ce94ca commit f40dd70

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

src/behavior-considered-undefined.md

+2-3
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,6 @@ code.
5151
`Trait` that matches the actual dynamic trait the pointer or reference points to.
5252
* Slice metadata is invalid if the length is not a valid `usize`
5353
(i.e., it must not be read from uninitialized memory).
54-
* Non-UTF-8 byte sequences in a `str`.
5554
* Invalid values for a type with a custom definition of invalid values.
5655
In the standard library, this affects [`NonNull<T>`] and [`NonZero*`].
5756

@@ -63,8 +62,8 @@ points to are part of the same allocation (so in particular they all have to be
6362
part of *some* allocation). The span of bytes it points to is determined by the
6463
pointer value and the size of the pointee type (using `size_of_val`). As a
6564
consequence, if the span is empty, "dangling" is the same as "non-null". Note
66-
that slices point to their entire range, so it is important that the length
67-
metadata is never too large. In particular, allocations and therefore slices
65+
that slices/string point to their entire range, so it is important that the length
66+
metadata is never too large. In particular, allocations and therefore slices/strings
6867
cannot be bigger than `isize::MAX` bytes.
6968

7069
> **Note**: Undefined behavior affects the entire program. For example, calling

0 commit comments

Comments
 (0)