commit | cc16d16adde974a14be962cf9a6a5665f90ff664 | [log] [tgz] |
---|---|---|
author | Mark Dickinson <dickinsm@gmail.com> | Mon Oct 26 07:58:04 2009 +0000 |
committer | Mark Dickinson <dickinsm@gmail.com> | Mon Oct 26 07:58:04 2009 +0000 |
tree | 800205749f80189daf036794c5cf2d67d689bbb1 | |
parent | 04fe7c01a8a0dd8a7234dd0f527e22386c2fed04 [diff] [blame] |
Silence gcc warning about possibly uninitialized variable 'converted_items'
diff --git a/Modules/arraymodule.c b/Modules/arraymodule.c index 0ac3cab..4791890 100644 --- a/Modules/arraymodule.c +++ b/Modules/arraymodule.c
@@ -1850,6 +1850,8 @@ /* Impossible, but needed to shut up GCC about the unhandled * enumeration value. */ + default: + PyErr_BadArgument(); return NULL; }