ceval: tighten the code of STORE_ANNOTATION
diff --git a/Python/ceval.c b/Python/ceval.c
index f737a2f..75ec7b2 100644
--- a/Python/ceval.c
+++ b/Python/ceval.c
@@ -1921,11 +1921,10 @@
                 err = PyObject_SetItem(ann_dict, name, ann);
             }
             Py_DECREF(ann_dict);
+            Py_DECREF(ann);
             if (err != 0) {
-                Py_DECREF(ann);
                 goto error;
             }
-            Py_DECREF(ann);
             DISPATCH();
         }