Deallocate memory during failed case
Free memory during failed case inside
pamFunctionConversation() function.
Tested:
- Pam authentication works as normal.
Signed-off-by: AppaRao Puli <apparao.puli@linux.intel.com>
Change-Id: I81c06a3d674b0806c96e5847cda6f208795bd02c
diff --git a/include/pam_authenticate.hpp b/include/pam_authenticate.hpp
index f2c7356..3e5c691 100644
--- a/include/pam_authenticate.hpp
+++ b/include/pam_authenticate.hpp
@@ -30,6 +30,7 @@
if (resp == nullptr)
{
+ free(pass);
return PAM_AUTH_ERR;
}