1
0
mirror of https://github.com/samba-team/samba.git synced 2025-08-04 08:22:08 +03:00

Fix memleak

(This used to be commit 6770d69942)
This commit is contained in:
Volker Lendecke
2003-07-15 16:46:20 +00:00
parent 7a88267a6a
commit 032232bd66

View File

@ -207,8 +207,10 @@ ATTRIB_MAP_ENTRY sidmap_attr_list[] = {
if ( !list )
return;
while ( list[i] )
while ( list[i] ) {
SAFE_FREE( list[i] );
i+=1;
}
SAFE_FREE( list );
}