From f6d55781744e2aa2506663d87fabbec00094ffbd Mon Sep 17 00:00:00 2001 From: Jan Nieuwenhuizen Date: Tue, 10 Jul 2018 21:52:31 +0200 Subject: [PATCH] core: Fix segfault on Debian/strectch. Thanks, pdewacht! * src/posix.c (execl_): Typo in initialization. Fixes segfault on Debian/strectch. Thanks, pdewacht! --- src/posix.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/posix.c b/src/posix.c index d12b222c..baf9205f 100644 --- a/src/posix.c +++ b/src/posix.c @@ -272,7 +272,7 @@ execl_ (SCM file_name, SCM args) ///((name . "execl")) { char *c_argv[1000]; // POSIX minimum 4096 int i = 0; - int n = n; + int n = 0; if (length__ (args) > 1000) error (cell_symbol_system_error,