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

tevent: Fix might be unitialized warning

This commit is contained in:
Tim Prouty 2009-03-12 10:44:36 -07:00
parent 5c63388f63
commit a84f939f4f

View File

@ -457,7 +457,7 @@ int _tevent_loop_until(struct tevent_context *ev,
void *private_data,
const char *location)
{
int ret;
int ret = 0;
void *nesting_stack_ptr = NULL;
ev->nesting.level++;