-
-
Notifications
You must be signed in to change notification settings - Fork 5.6k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
String
constructor is bad
#16713
Comments
I think there was a conscious decision by @StefanKarpinski to allow invalid UTF-8 data, so that |
See also #16470. |
I think @StefanKarpinski may have accidentally changed the Probably |
…unsafe_string_wrapper, and unsafe_array_wrapper; restore non-copying behavior of String(::Vector{UInt8}) constructor (closes JuliaLang#16470, closes JuliaLang#16713)
…unsafe_string_wrapper, and unsafe_array_wrapper; restore non-copying behavior of String(::Vector{UInt8}) constructor (closes JuliaLang#16470, closes JuliaLang#16713)
The
String
constructor here leaves a lot to be desired:String
object doesn't take ownership of anything.String([0x80]);
is allowed, even though is is an invalid string.String
inner constructor, making the inner constructor useless and emitting a warning at build time.Obviously not all of these can be fixed (points 1 and 3 would move it in different directions), but I think it ought to pick a direction:
String
should be safe, and check its input (along with making a copy). The method is updated to check validity of UTF8. The docstring is updated. Anunsafe_array_to_string
replaces the current behaviour, and additionally does not make a copy. The inner constructor is deleted.String
should not be safe, and does not check input, and does not make a copy. The method is deleted and the docstring moved to the inner constructor.The text was updated successfully, but these errors were encountered: