diff options
author | 2019-03-31 07:58:53 +0000 | |
---|---|---|
committer | 2019-03-31 07:58:53 +0000 | |
commit | 6da13141f57ab1301365e5e2a6edf30a475bf23b (patch) | |
tree | 9f5e2341a0824cd225e325ac3f7b2e13d9eab776 | |
parent | Fix white spaces and a typo. (diff) | |
download | wireguard-openbsd-6da13141f57ab1301365e5e2a6edf30a475bf23b.tar.xz wireguard-openbsd-6da13141f57ab1301365e5e2a6edf30a475bf23b.zip |
Fix a memory leak.
-rw-r--r-- | usr.sbin/radiusd/radiusd_bsdauth.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.sbin/radiusd/radiusd_bsdauth.c b/usr.sbin/radiusd/radiusd_bsdauth.c index bfd844968f6..a7696bbc951 100644 --- a/usr.sbin/radiusd/radiusd_bsdauth.c +++ b/usr.sbin/radiusd/radiusd_bsdauth.c @@ -1,4 +1,4 @@ -/* $OpenBSD: radiusd_bsdauth.c,v 1.10 2019/03/31 07:57:30 yasuoka Exp $ */ +/* $OpenBSD: radiusd_bsdauth.c,v 1.11 2019/03/31 07:58:53 yasuoka Exp $ */ /* * Copyright (c) 2015 YASUOKA Masahiko <yasuoka@yasuoka.net> @@ -213,8 +213,8 @@ group_done: 0, 0, -1, NULL, 0); break; } - imsg_free(&imsg); } + imsg_free(&imsg); imsg_flush(&ibuf); } imsg_flush(&ibuf); |