summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Misc/NEWS5
-rw-r--r--Modules/_localemodule.c2
2 files changed, 6 insertions, 1 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 19e2dea..611dbea 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -54,6 +54,11 @@ Library
now it does. This also means getfp method now returns the real fp.
+Extension Modules
+-----------------
+
+- Issue #6093: Fix off-by-one error in locale.strxfrm.
+
Tests
-----
diff --git a/Modules/_localemodule.c b/Modules/_localemodule.c
index 432df36..50378a7 100644
--- a/Modules/_localemodule.c
+++ b/Modules/_localemodule.c
@@ -314,7 +314,7 @@ PyLocale_strxfrm(PyObject* self, PyObject* args)
PyErr_NoMemory();
goto exit;
}
- n2 = wcsxfrm(buf, s, n2);
+ n2 = wcsxfrm(buf, s, n2+1);
}
result = PyUnicode_FromWideChar(buf, n2);
exit: