summaryrefslogtreecommitdiffstats
path: root/osdep-sunos.c
diff options
context:
space:
mode:
Diffstat (limited to 'osdep-sunos.c')
-rw-r--r--osdep-sunos.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/osdep-sunos.c b/osdep-sunos.c
index 6ba27691..bb67412c 100644
--- a/osdep-sunos.c
+++ b/osdep-sunos.c
@@ -49,7 +49,7 @@ osdep_get_name(int fd, char *tty)
xasprintf(&path, "/proc/%u/psinfo", (u_int) pgrp);
f = open(path, O_RDONLY);
- xfree(path);
+ free(path);
if (f < 0)
return (NULL);
@@ -73,7 +73,7 @@ osdep_get_cwd(pid_t pid)
xasprintf(&path, "/proc/%u/path/cwd", (u_int) pid);
n = readlink(path, target, MAXPATHLEN);
- xfree(path);
+ free(path);
if (n > 0) {
target[n] = '\0';
return (target);