summaryrefslogtreecommitdiffstats
path: root/development/chicken/patches/01_all_CVE-2013-1874.patch
diff options
context:
space:
mode:
Diffstat (limited to 'development/chicken/patches/01_all_CVE-2013-1874.patch')
-rw-r--r--development/chicken/patches/01_all_CVE-2013-1874.patch25
1 files changed, 0 insertions, 25 deletions
diff --git a/development/chicken/patches/01_all_CVE-2013-1874.patch b/development/chicken/patches/01_all_CVE-2013-1874.patch
deleted file mode 100644
index 599ae61d32..0000000000
--- a/development/chicken/patches/01_all_CVE-2013-1874.patch
+++ /dev/null
@@ -1,25 +0,0 @@
-From http://lists.nongnu.org/archive/html/chicken-hackers/2013-03/msg00074.html
---- chicken-4.8.0.3/csi.scm
-+++ chicken-4.8.0.3/csi.scm
-@@ -1019,13 +1019,11 @@ EOF
- (cons (cadr p) (loop (cddr p)))) ) ]
- [else '()] ) ) )
- (define (loadinit)
-- (let ([fn (##sys#string-append "./" init-file)])
-- (if (file-exists? fn)
-- (load fn)
-- (let* ([prefix (chop-separator (or (get-environment-variable "HOME") "."))]
-- [fn (string-append prefix "/" init-file)] )
-- (when (file-exists? fn)
-- (load fn) ) ) ) ) )
-+ (and-let* ((home (get-environment-variable "HOME"))
-+ ((not (string=? home ""))))
-+ (let ((fn (string-append (chop-separator home) "/" init-file)))
-+ (when (file-exists? fn)
-+ (load fn) ) ) ) )
- (define (evalstring str #!optional (rec (lambda _ (void))))
- (let ((in (open-input-string str)))
- (do ([x (read in) (read in)])
---
-1.7.12
-