openssh-unix-dev March 2011 archive
Main Archive Page > Month Archives  > openssh-unix-dev archives
openssh-unix-dev: [v1 PATCH 1/1] Free memory

[v1 PATCH 1/1] Free memory

From: <rongqing.li_at_nospam>
Date: Thu Mar 31 2011 - 08:25:36 GMT
To: djm@openbsd.org, openssh-unix-dev@mindrot.org

The memory which is allocated by matchpathcon should be
freed after it is used

Signed-off-by: Roy Li <rongqing.li@windriver.com>
--- openbsd-compat/port-linux.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) --- a/openbsd-compat/port-linux.c +++ b/openbsd-compat/port-linux.c @@ -217,8 +217,10 @@ ssh_selinux_setfscreatecon(const char *p setfscreatecon(NULL); return; } - if (matchpathcon(path, 0700, &context) == 0) + if (matchpathcon(path, 0700, &context) == 0) { setfscreatecon(context); + freecon(context); + } } #endif /* WITH_SELINUX */ _______________________________________________ openssh-unix-dev mailing list openssh-unix-dev@mindrot.org https://lists.mindrot.org/mailman/listinfo/openssh-unix-dev