]> granicus.if.org Git - python/commitdiff
bpo-38425: Fix ‘res’ may be used uninitialized warning (GH-16688)
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>
Thu, 10 Oct 2019 08:00:19 +0000 (01:00 -0700)
committerGitHub <noreply@github.com>
Thu, 10 Oct 2019 08:00:19 +0000 (01:00 -0700)
(cherry picked from commit a05fcd3c7adf6e3a0944da8cf80a3346882e9b3b)

Co-authored-by: Dong-hee Na <donghee.na92@gmail.com>
Parser/asdl_c.py
Python/Python-ast.c

index f4fa271b6595bf29d5a4591cbbdb4324927c2065..574fcb0e2faaf529c5220014b535b086a8f9a9d3 100644 (file)
@@ -1191,7 +1191,6 @@ PyObject* PyAST_mod2obj(mod_ty t)
 /* mode is 0 for "exec", 1 for "eval" and 2 for "single" input */
 mod_ty PyAST_obj2mod(PyObject* ast, PyArena* arena, int mode)
 {
-    mod_ty res;
     PyObject *req_type[3];
     char *req_name[] = {"Module", "Expression", "Interactive"};
     int isinstance;
@@ -1217,6 +1216,8 @@ mod_ty PyAST_obj2mod(PyObject* ast, PyArena* arena, int mode)
                      req_name[mode], Py_TYPE(ast)->tp_name);
         return NULL;
     }
+
+    mod_ty res = NULL;
     if (obj2ast_mod(ast, &res, arena) != 0)
         return NULL;
     else
index fd96964a1e77eded118dfd916199bed3c69be533..f73f035845f8c63c39d844ca3cac0523dcb8bc94 100644 (file)
@@ -8991,7 +8991,6 @@ PyObject* PyAST_mod2obj(mod_ty t)
 /* mode is 0 for "exec", 1 for "eval" and 2 for "single" input */
 mod_ty PyAST_obj2mod(PyObject* ast, PyArena* arena, int mode)
 {
-    mod_ty res;
     PyObject *req_type[3];
     char *req_name[] = {"Module", "Expression", "Interactive"};
     int isinstance;
@@ -9017,6 +9016,8 @@ mod_ty PyAST_obj2mod(PyObject* ast, PyArena* arena, int mode)
                      req_name[mode], Py_TYPE(ast)->tp_name);
         return NULL;
     }
+
+    mod_ty res = NULL;
     if (obj2ast_mod(ast, &res, arena) != 0)
         return NULL;
     else