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

Ensure data is not used uninitialised.

Jeremy.
(This used to be commit 3c2d396aa8)
This commit is contained in:
Jeremy Allison 2002-11-26 17:40:25 +00:00
parent 44c8c16546
commit edc4c1f643

View File

@ -161,7 +161,7 @@ BOOL namecache_fetch(const char *name, int name_type, struct in_addr **ip_list,
int *num_names)
{
TDB_DATA key, value;
struct nc_value *data;
struct nc_value *data = NULL;
time_t now;
int i;