1
0
mirror of https://github.com/samba-team/samba.git synced 2025-02-11 17:58:16 +03:00

Fix a memleak in wbcAuthenticateUserEx()

(cherry picked from commit 72b381689af9cae83ab08532cffd0188f2da4807)
(This used to be commit 20110ee5f181168dc1cbc08b7c22820d68204960)
This commit is contained in:
Volker Lendecke 2008-06-17 13:00:13 +02:00
parent ee281b7479
commit 8349e02b0b

View File

@ -416,6 +416,8 @@ wbcErr wbcAuthenticateUserEx(const struct wbcAuthUserParams *params,
}
done:
if (response.extra_data.data)
free(response.extra_data.data);
return wbc_status;
}