core: Fix segfault on Debian/strectch. Thanks, pdewacht!
* src/posix.c (execl_): Typo in initialization. Fixes segfault on Debian/strectch. Thanks, pdewacht!
This commit is contained in:
parent
7f6676a4c2
commit
f6d5578174
|
@ -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,
|
||||
|
|
Loading…
Reference in a new issue