1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-25 23:21:54 +03:00

Always call the auto-init funciton - this avoids tdb segfaulting under

us if we failed to open it earlier.

Andrew Bartlett
(This used to be commit 379368b0be)
This commit is contained in:
Andrew Bartlett 2004-01-05 04:15:55 +00:00
parent 425699fce7
commit b86830a7cd

View File

@ -357,6 +357,9 @@ void gencache_iterate(void (*fn)(const char* key, const char *value, time_t time
int gencache_lock_entry( const char *key )
{
if (!gencache_init())
return -1;
return tdb_lock_bystring(cache, key, 0);
}
@ -366,6 +369,9 @@ int gencache_lock_entry( const char *key )
void gencache_unlock_entry( const char *key )
{
if (!gencache_init())
return;
tdb_unlock_bystring(cache, key);
return;
}