1
0
mirror of https://github.com/samba-team/samba.git synced 2025-03-05 20:58:40 +03:00

ldb:ldb_dn_explode - point out that on error cases "data" is implicitly free'd

This commit is contained in:
Matthias Dieter Wallnöfer 2010-11-18 08:57:00 +01:00
parent 1c4807a62f
commit ca7979e1a3

View File

@ -729,7 +729,7 @@ static bool ldb_dn_explode(struct ldb_dn *dn)
return true;
failed:
LDB_FREE(dn->components);
LDB_FREE(dn->components); /* "data" is implicitly free'd */
dn->comp_num = 0;
LDB_FREE(dn->ext_components);
dn->ext_comp_num = 0;