diff options
Diffstat (limited to 'Python/marshal.c')
-rw-r--r-- | Python/marshal.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Python/marshal.c b/Python/marshal.c index b2c00a0..b6337e1 100644 --- a/Python/marshal.c +++ b/Python/marshal.c @@ -1112,6 +1112,7 @@ r_object(RFILE *p) case TYPE_ASCII_INTERNED: is_interned = 1; + /* fall through */ case TYPE_ASCII: n = r_long(p); if (PyErr_Occurred()) @@ -1124,6 +1125,7 @@ r_object(RFILE *p) case TYPE_SHORT_ASCII_INTERNED: is_interned = 1; + /* fall through */ case TYPE_SHORT_ASCII: n = r_byte(p); if (n == EOF) { @@ -1149,6 +1151,7 @@ r_object(RFILE *p) case TYPE_INTERNED: is_interned = 1; + /* fall through */ case TYPE_UNICODE: { const char *buffer; |