Merge branch '2.3' into develop

This commit is contained in:
Esa Korhonen
2019-05-24 13:12:20 +03:00
9 changed files with 339 additions and 149 deletions

View File

@ -20,8 +20,7 @@
static void* pam_backend_auth_alloc(void* instance)
{
PamBackendSession* pses = new(std::nothrow) PamBackendSession();
return pses;
return new(std::nothrow) PamBackendSession();
}
static void pam_backend_auth_free(void* data)