diff options
Diffstat (limited to 'source3')
-rw-r--r-- | source3/smbd/mangle.c | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/source3/smbd/mangle.c b/source3/smbd/mangle.c index e47bcd896f..8ac91d49c8 100644 --- a/source3/smbd/mangle.c +++ b/source3/smbd/mangle.c @@ -465,7 +465,8 @@ static signed int cache_compare( ubi_btItemPtr ItemPtr, ubi_btNodePtr NodePtr ) */ static void cache_free_entry( ubi_trNodePtr WarrenZevon ) { - free( WarrenZevon ); + ZERO_STRUCTP(WarrenZevon); + free( WarrenZevon ); } /* cache_free_entry */ /* ************************************************************************** ** @@ -575,6 +576,15 @@ static void cache_mangled_name( char *mangled_name, char *raw_name ) s2 = (char *)&(s1[mangled_len + 1]); (void)StrnCpy( s1, mangled_name, mangled_len ); (void)StrnCpy( s2, raw_name, raw_len ); + + /* possibly delete an old entry - this avoids a memory leak in the + ubi code to do with overwriting existing entries. + + remove this test when ubi gets fixed */ + if (ubi_cacheGet(mangled_cache, s1)) { + ubi_cacheDelete(mangled_cache, s1); + } + ubi_cachePut( mangled_cache, i, new_entry, s1 ); } /* cache_mangled_name */ |