summaryrefslogtreecommitdiff
path: root/Python
diff options
context:
space:
mode:
authorNeal Norwitz <nnorwitz@gmail.com>2006-09-11 04:06:23 +0000
committerNeal Norwitz <nnorwitz@gmail.com>2006-09-11 04:06:23 +0000
commitece448efa0fc06500f0eaf9e657b8fd38fae16d4 (patch)
tree61691af02d71eed7ebe0468a73f47254e33df0d3 /Python
parent48829ba61d840cfcc6be63219b62476b4f9c7f7d (diff)
downloadcpython-git-ece448efa0fc06500f0eaf9e657b8fd38fae16d4.tar.gz
Properly handle a NULL returned from PyArena_New().
Klocwork #364. Will port to head.
Diffstat (limited to 'Python')
-rw-r--r--Python/import.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/Python/import.c b/Python/import.c
index 5af365187e..390f9e3292 100644
--- a/Python/import.c
+++ b/Python/import.c
@@ -796,14 +796,16 @@ parse_source_module(const char *pathname, FILE *fp)
{
PyCodeObject *co = NULL;
mod_ty mod;
- PyArena *arena = PyArena_New();
+ PyArena *arena = PyArena_New();
+ if (arena == NULL)
+ return NULL;
mod = PyParser_ASTFromFile(fp, pathname, Py_file_input, 0, 0, 0,
NULL, arena);
if (mod) {
co = PyAST_Compile(mod, pathname, NULL, arena);
}
- PyArena_Free(arena);
+ PyArena_Free(arena);
return co;
}