Skip to content

Commit

Permalink
valgrind: Avoid a warning about uninitialized memory
Browse files Browse the repository at this point in the history
Signed-off-by: Garming Sam <[email protected]>
Reviewed-by: Andrew Bartlett <[email protected]>
  • Loading branch information
GSam authored and metze-samba committed Jul 28, 2016
1 parent 15e6217 commit 88a4d55
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion source4/libnet/libnet_vampire.c
Original file line number Diff line number Diff line change
Expand Up @@ -238,7 +238,7 @@ static NTSTATUS libnet_vampire_cb_apply_schema(struct libnet_vampire_cb_state *s
uint32_t i;
int ret;
bool ok;
uint64_t seq_num;
uint64_t seq_num = 0;
uint32_t cycle_before_switching;

DEBUG(0,("Analyze and apply schema objects\n"));
Expand Down

0 comments on commit 88a4d55

Please sign in to comment.