Fix #132 from Coverity, retval could have been derefed
if a continue inside a try failed.
diff --git a/Python/ceval.c b/Python/ceval.c
index d242414..43dcdd0 100644
--- a/Python/ceval.c
+++ b/Python/ceval.c
@@ -2173,6 +2173,10 @@
 
 		case CONTINUE_LOOP:
 			retval = PyInt_FromLong(oparg);
+			if (!retval) {
+				x = NULL;
+				break;
+			}
 			why = WHY_CONTINUE;
 			goto fast_block_end;