diff options
author | CoprDistGit <infra@openeuler.org> | 2024-08-06 02:45:06 +0000 |
---|---|---|
committer | CoprDistGit <infra@openeuler.org> | 2024-08-06 02:45:06 +0000 |
commit | 89e6f76b27bb9e1dc1136ee1b100c3e68c84a8c0 (patch) | |
tree | 2509c0f40274cab283e03132873e37b755ef9d14 /libpaper-file-leak.patch | |
parent | 9be314b80deae7e4118e3a90e49283af711e4f72 (diff) |
automatic import of libpaperopeneuler24.03_LTS
Diffstat (limited to 'libpaper-file-leak.patch')
-rw-r--r-- | libpaper-file-leak.patch | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/libpaper-file-leak.patch b/libpaper-file-leak.patch new file mode 100644 index 0000000..47b878b --- /dev/null +++ b/libpaper-file-leak.patch @@ -0,0 +1,22 @@ +diff -up libpaper-1.1.24+nmu5/lib/paper.c.file-leak libpaper-1.1.24+nmu5/lib/paper.c +--- libpaper-1.1.24+nmu5/lib/paper.c.file-leak 2018-03-09 16:21:01.028345956 +0100 ++++ libpaper-1.1.24+nmu5/lib/paper.c 2018-03-09 16:40:57.824279357 +0100 +@@ -140,7 +140,7 @@ char* systempapername(void) { + char* paperstr; + char* paperenv; + const char* paperdef; +- FILE* ps; ++ FILE* ps = NULL; + struct stat statbuf; + const struct paper* pp; + int c; +@@ -224,6 +224,9 @@ PAPERSIZEVAR, fall-back to the old behav + } + } + ++ if (ps) ++ fclose(ps); ++ + paperdef = defaultpapername(); + paperstr = malloc((strlen(paperdef) + 1) * sizeof(char)); + |