Issue #18408: Fix marshal reader for Unicode strings: handle
PyUnicode_DecodeUTF8() failure (ex: MemoryError).
diff --git a/Python/marshal.c b/Python/marshal.c
index e519fc9..e97de59 100644
--- a/Python/marshal.c
+++ b/Python/marshal.c
@@ -998,6 +998,10 @@
         else {
             v = PyUnicode_New(0, 0);
         }
+        if (v == NULL) {
+            retval = NULL;
+            break;
+        }
         if (type == TYPE_INTERNED)
             PyUnicode_InternInPlace(&v);
         retval = v;