From 347e5e932ccd4b01fe3e6531a3b897624ce37c21 Mon Sep 17 00:00:00 2001 From: Marcus Brinkmann Date: Wed, 1 Aug 2001 13:00:55 +0000 Subject: 2001-08-01 Marcus Brinkmann * mux.c (free_name): Swap order of memory releases. Reported by Kalle Olavi Niemitalo --- hostmux/ChangeLog | 5 +++++ hostmux/mux.c | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/hostmux/ChangeLog b/hostmux/ChangeLog index 1edc482b..2d928d77 100644 --- a/hostmux/ChangeLog +++ b/hostmux/ChangeLog @@ -1,3 +1,8 @@ +2001-08-01 Marcus Brinkmann + + * mux.c (free_name): Swap order of memory releases. + Reported by Kalle Olavi Niemitalo + 2001-02-12 Marcus Brinkmann * hostmux.c: Include . Add global variable diff --git a/hostmux/mux.c b/hostmux/mux.c index 4e3a2a7f..17cbc35f 100644 --- a/hostmux/mux.c +++ b/hostmux/mux.c @@ -218,9 +218,9 @@ netfs_get_dirents (struct iouser *cred, struct node *dir, static void free_name (struct hostmux_name *nm) { - free ((char *)nm->name); if (nm->name != nm->canon) free ((char *)nm->canon); + free ((char *)nm->name); free (nm); } -- cgit v1.2.3