Reduce unnecessary string memsets
Particularly for string slicing, where we would always memset the string data to zero, and then immediately memcpy it.
Showing
Please register or sign in to comment
Particularly for string slicing, where we would always memset the string data to zero, and then immediately memcpy it.