diff options
author | shadchin <[email protected]> | 2024-05-25 20:17:30 +0300 |
---|---|---|
committer | shadchin <[email protected]> | 2024-05-25 20:30:06 +0300 |
commit | 93dedde5f347af8bf358ce6a131662ed784220f4 (patch) | |
tree | c45b0e86a277eb835b420533acfc57321a1a6867 /contrib/tools/python3/Objects/unicodeobject.c | |
parent | 981459b64021aeee8e80fbed0fd0d9b205adbd32 (diff) |
Remove unnecessary patch
294af49eb80feb0cff89ea1de5cd9a8728bfbe89
Diffstat (limited to 'contrib/tools/python3/Objects/unicodeobject.c')
-rw-r--r-- | contrib/tools/python3/Objects/unicodeobject.c | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/contrib/tools/python3/Objects/unicodeobject.c b/contrib/tools/python3/Objects/unicodeobject.c index ad6defb629f..fc9379be02f 100644 --- a/contrib/tools/python3/Objects/unicodeobject.c +++ b/contrib/tools/python3/Objects/unicodeobject.c @@ -1896,11 +1896,6 @@ PyUnicode_FromStringAndSize(const char *u, Py_ssize_t size) PyObject * PyUnicode_FromString(const char *u) { -#if defined(__has_feature) -# if __has_feature(memory_sanitizer) - __msan_unpoison_string(u); -# endif -#endif size_t size = strlen(u); if (size > PY_SSIZE_T_MAX) { PyErr_SetString(PyExc_OverflowError, "input too long"); |