summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorTim Prouty <tprouty@samba.org>2009-03-12 10:44:36 -0700
committerTim Prouty <tprouty@samba.org>2009-03-12 12:28:13 -0700
commita84f939f4f90b829515808eed203cc6a32b4d8ae (patch)
treee27a908d9ef08f65854b2201ac09663af38320c0 /lib
parent5c63388f63028af9bac2acb2ef0a38736278823b (diff)
downloadsamba-a84f939f4f90b829515808eed203cc6a32b4d8ae.tar.gz
tevent: Fix might be unitialized warning
Diffstat (limited to 'lib')
-rw-r--r--lib/tevent/tevent.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/tevent/tevent.c b/lib/tevent/tevent.c
index a9e18c349d7..867cfc08fef 100644
--- a/lib/tevent/tevent.c
+++ b/lib/tevent/tevent.c
@@ -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++;