aboutsummaryrefslogtreecommitdiff
path: root/src/cmd/samterm/plan9.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/cmd/samterm/plan9.c')
-rw-r--r--src/cmd/samterm/plan9.c9
1 files changed, 7 insertions, 2 deletions
diff --git a/src/cmd/samterm/plan9.c b/src/cmd/samterm/plan9.c
index 469d566e..1b933578 100644
--- a/src/cmd/samterm/plan9.c
+++ b/src/cmd/samterm/plan9.c
@@ -53,8 +53,10 @@ getscreen(int argc, char **argv)
threadexitsall("init");
}
t = getenv("tabstop");
- if(t != nil)
+ if(t != nil){
maxtab = strtoul(t, nil, 0);
+ free(t);
+ }
draw(screen, screen->clipr, display->white, nil, ZP);
}
@@ -149,10 +151,13 @@ extstart(void)
if(user == nil)
return;
disp = getenv("DISPLAY");
- if(disp)
+ if(disp){
exname = smprint("/tmp/.sam.%s.%s", user, disp);
+ free(disp);
+ }
else
exname = smprint("/tmp/.sam.%s", user);
+ free(user);
if(exname == nil){
fprint(2, "not posting for B: out of memory\n");
return;