From: | Bean Zhang <bean.zhang@centrify.com> |
To: | "krb5-bugs@mit.edu" <krb5-bugs@mit.edu> |
Subject: | Resource leak in ulog_map() |
Date: | Wed, 20 Jun 2018 02:07:54 +0000 |
Hi Team,
In ulog_map() of krb5-1.16.1/src/lib/kdb/kdb_log.c,
When calls mmap(), will return a pointer to the mapped area and assigned to ulog
later if k5alloc() fails, this function returns without unmapping that mapped area ulog points to.
The fix is to call "munmap(ulog)" if this function returns on calling k5alloc() failure.
Could someone help to take a look?
Thanks,
Bean