ref: 30075dcfce532093f7b9001b3378fe3bc0e81176
parent: 25056ddc87f5cdb96ed9b94c780d7c2b0806ab8a
author: spew <spew@cbza.org>
date: Fri Mar 21 15:39:48 EDT 2025
slmain: initialize interactive where it will not clobbered
--- a/src/plan9/lsd.c
+++ b/src/plan9/lsd.c
@@ -378,9 +378,7 @@
BUILTIN("lsd-das", lsd_das)
{
static char buf[512];
- int size;
uvlong addr;
- sl_v r;
argcount(nargs, 1);
if(sl_unlikely(!sl_isnum(args[0])))
--- a/src/slmain.c
+++ b/src/slmain.c
@@ -72,7 +72,7 @@
slmain(const u8int *boot, int bootsz, int argc, char **argv)
{
usize heapsize = HEAP_SIZE0, stacksize = STACK_SIZE0;
- static sl_v interactive = sl_nil;
+ sl_v interactive;
char *e;
nan_init();
@@ -80,6 +80,7 @@
ios_init_std();
mpsetminbits(sizeof(sl_fx)*8);
+ interactive = sl_nil;
ARGBEGIN{
case 'H':
heapsize = strtoull(EARGF(usage()), &e, 0);