summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorPaul Eggert <eggert@cs.ucla.edu>2004-11-16 20:44:34 +0000
committerPaul Eggert <eggert@cs.ucla.edu>2004-11-16 20:44:34 +0000
commited2fcc6f9aa466b2e026af88fd3bd712e007da25 (patch)
tree52521d79694e201a65cfe36ac5bb716e8ec35599 /src
parent82a15eefa33f77728ab11f545fc95889a184873b (diff)
downloadcoreutils-ed2fcc6f9aa466b2e026af88fd3bd712e007da25.tar.xz
Fix memory leak.
Diffstat (limited to 'src')
-rw-r--r--src/pinky.c3
-rw-r--r--src/who.c3
2 files changed, 6 insertions, 0 deletions
diff --git a/src/pinky.c b/src/pinky.c
index 2e97fc8a6..6912972fc 100644
--- a/src/pinky.c
+++ b/src/pinky.c
@@ -310,6 +310,9 @@ print_entry (const STRUCT_UTMP *utmp_ent)
printf (" %s:%s", host, display);
else
printf (" %s", host);
+
+ if (host != ut_host)
+ free (host);
}
#endif
diff --git a/src/who.c b/src/who.c
index 714ac2840..d050dc1fc 100644
--- a/src/who.c
+++ b/src/who.c
@@ -421,6 +421,9 @@ print_user (const STRUCT_UTMP *utmp_ent, time_t boottime)
}
sprintf (hoststr, "(%s)", host);
}
+
+ if (host != ut_host)
+ free (host);
}
else
{