From adde86d0e31ce486e72a9d1a2a7625e5e34d97e9 Mon Sep 17 00:00:00 2001 From: Benjamin Peterson Date: Fri, 23 Sep 2011 13:41:41 -0400 Subject: fix compiler compliant about \0 not being an opcode --- Modules/_pickle.c | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/Modules/_pickle.c b/Modules/_pickle.c index 20ee302..164d864 100644 --- a/Modules/_pickle.c +++ b/Modules/_pickle.c @@ -5298,13 +5298,12 @@ load(UnpicklerObject *self) case STOP: break; - case '\0': - PyErr_SetNone(PyExc_EOFError); - return NULL; - default: - PyErr_Format(UnpicklingError, - "invalid load key, '%c'.", s[0]); + if (s[0] == '\0') + PyErr_SetNone(PyExc_EOFError); + else + PyErr_Format(UnpicklingError, + "invalid load key, '%c'.", s[0]); return NULL; } -- cgit v0.12