]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
gh-123919: Fix null handling in `_freeze_module.c` (#123920)
authorsobolevn <mail@sobolevn.me>
Wed, 11 Sep 2024 13:37:35 +0000 (16:37 +0300)
committerGitHub <noreply@github.com>
Wed, 11 Sep 2024 13:37:35 +0000 (19:07 +0530)
Programs/_freeze_module.c

index 2a462a42cdad7c7eabffde8f2c6c0594515e2f4f..891e4256e897ab7f3dd7c47ad08f167659b566b0 100644 (file)
@@ -110,6 +110,9 @@ static PyObject *
 compile_and_marshal(const char *name, const char *text)
 {
     char *filename = (char *) malloc(strlen(name) + 10);
+    if (filename == NULL) {
+        return PyErr_NoMemory();
+    }
     sprintf(filename, "<frozen %s>", name);
     PyObject *code = Py_CompileStringExFlags(text, filename,
                                              Py_file_input, NULL, 0);
@@ -133,6 +136,9 @@ get_varname(const char *name, const char *prefix)
 {
     size_t n = strlen(prefix);
     char *varname = (char *) malloc(strlen(name) + n + 1);
+    if (varname == NULL) {
+        return NULL;
+    }
     (void)strcpy(varname, prefix);
     for (size_t i = 0; name[i] != '\0'; i++) {
         if (name[i] == '.') {
@@ -178,6 +184,11 @@ write_frozen(const char *outpath, const char *inpath, const char *name,
 
     fprintf(outfile, "%s\n", header);
     char *arrayname = get_varname(name, "_Py_M__");
+    if (arrayname == NULL) {
+        fprintf(stderr, "memory error: could not allocate varname\n");
+        fclose(outfile);
+        return -1;
+    }
     write_code(outfile, marshalled, arrayname);
     free(arrayname);