parent
e089fe3e65
commit
6db28c873c
@ -0,0 +1,31 @@
|
|||||||
|
From 216c65b135c2b0be7e048cdc6683873b03b99b9a Mon Sep 17 00:00:00 2001
|
||||||
|
From: Lars Ingebrigtsen <larsi@gnus.org>
|
||||||
|
Date: Sun, 28 Mar 2021 19:13:00 +0200
|
||||||
|
Subject: [PATCH] Use a 64KB page size for pdump
|
||||||
|
|
||||||
|
* src/pdumper.c (dump_get_page_size): Use a 64KB page size on all
|
||||||
|
architectures, as this many vary between systems (bug#47125).
|
||||||
|
---
|
||||||
|
src/pdumper.c | 6 +-----
|
||||||
|
1 file changed, 1 insertion(+), 5 deletions(-)
|
||||||
|
|
||||||
|
diff --git a/src/pdumper.c b/src/pdumper.c
|
||||||
|
index 337742fda4..fdd9b3bacb 100644
|
||||||
|
--- a/src/pdumper.c
|
||||||
|
+++ b/src/pdumper.c
|
||||||
|
@@ -162,11 +162,7 @@ ptrdiff_t_to_dump_off (ptrdiff_t value)
|
||||||
|
static int
|
||||||
|
dump_get_page_size (void)
|
||||||
|
{
|
||||||
|
-#if defined (WINDOWSNT) || defined (CYGWIN)
|
||||||
|
- return 64 * 1024; /* Worst-case allocation granularity. */
|
||||||
|
-#else
|
||||||
|
- return getpagesize ();
|
||||||
|
-#endif
|
||||||
|
+ return 64 * 1024;
|
||||||
|
}
|
||||||
|
|
||||||
|
#define dump_offsetof(type, member) \
|
||||||
|
--
|
||||||
|
2.36.1
|
||||||
|
|
File diff suppressed because it is too large
Load Diff
@ -1,43 +0,0 @@
|
|||||||
From a8006ea580ed74f27f974d60b598143b04ad1741 Mon Sep 17 00:00:00 2001
|
|
||||||
From: Xi Lu <lx@shellcodes.org>
|
|
||||||
Date: Sat, 11 Mar 2023 18:53:37 +0800
|
|
||||||
Subject: * lisp/org/ob-latex.el: Fix command injection vulnerability
|
|
||||||
|
|
||||||
(org-babel-execute:latex):
|
|
||||||
Replaced the `(shell-command "mv BAR NEWBAR")' with `rename-file'.
|
|
||||||
|
|
||||||
TINYCHANGE
|
|
||||||
---
|
|
||||||
lisp/org/ob-latex.el | 13 +++++--------
|
|
||||||
1 file changed, 5 insertions(+), 8 deletions(-)
|
|
||||||
|
|
||||||
diff --git a/lisp/org/ob-latex.el b/lisp/org/ob-latex.el
|
|
||||||
index a2c24b3..ce39628 100644
|
|
||||||
--- a/lisp/org/ob-latex.el
|
|
||||||
+++ b/lisp/org/ob-latex.el
|
|
||||||
@@ -218,17 +218,14 @@ This function is called by `org-babel-execute-src-block'."
|
|
||||||
(if (string-suffix-p ".svg" out-file)
|
|
||||||
(progn
|
|
||||||
(shell-command "pwd")
|
|
||||||
- (shell-command (format "mv %s %s"
|
|
||||||
- (concat (file-name-sans-extension tex-file) "-1.svg")
|
|
||||||
- out-file)))
|
|
||||||
+ (rename-file (concat (file-name-sans-extension tex-file) "-1.svg")
|
|
||||||
+ out-file t))
|
|
||||||
(error "SVG file produced but HTML file requested")))
|
|
||||||
((file-exists-p (concat (file-name-sans-extension tex-file) ".html"))
|
|
||||||
(if (string-suffix-p ".html" out-file)
|
|
||||||
- (shell-command "mv %s %s"
|
|
||||||
- (concat (file-name-sans-extension tex-file)
|
|
||||||
- ".html")
|
|
||||||
- out-file)
|
|
||||||
- (error "HTML file produced but SVG file requested")))))
|
|
||||||
+ (rename-file (concat (file-name-sans-extension tex-file) ".html")
|
|
||||||
+ out-file t)
|
|
||||||
+ (error "HTML file produced but SVG file requested")))))
|
|
||||||
((or (string= "pdf" extension) imagemagick)
|
|
||||||
(with-temp-file tex-file
|
|
||||||
(require 'ox-latex)
|
|
||||||
--
|
|
||||||
cgit v1.1
|
|
||||||
|
|
Loading…
Reference in new issue