diff options
author | Richard M. Stallman <rms@gnu.org> | 1996-12-16 06:01:18 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 1996-12-16 06:01:18 +0000 |
commit | 6a7eabe0c65144f10b60ffe3f7c7709846641689 (patch) | |
tree | dae7b41982ee6dddd120d4a116a34d55db98fdaa /lib-src | |
parent | 94bec52a5591c12182f402d24c8702dd6023eeb0 (diff) | |
download | emacs-6a7eabe0c65144f10b60ffe3f7c7709846641689.tar.gz |
(socket_connection): Free realhost after using it.
Diffstat (limited to 'lib-src')
-rw-r--r-- | lib-src/pop.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib-src/pop.c b/lib-src/pop.c index c4d4c26e5ef..9292998e288 100644 --- a/lib-src/pop.c +++ b/lib-src/pop.c @@ -1184,6 +1184,7 @@ socket_connection (host, flags) (struct sockaddr_in *) 0, "KPOPV0.1"); free ((char *) ticket); + free (realhost); if (rem != KSUCCESS) { strcpy (pop_error, KRB_ERROR); |