Skip to content

Commit

Permalink
dbwrap: Fix structure initialization
Browse files Browse the repository at this point in the history
Bug: https://bugzilla.samba.org/show_bug.cgi?id=12134
Signed-off-by: Amitay Isaacs <[email protected]>
Reviewed-by: Volker Lendecke <[email protected]>

Autobuild-User(master): Volker Lendecke <[email protected]>
Autobuild-Date(master): Tue Aug  9 15:15:43 CEST 2016 on sn-devel-144
  • Loading branch information
amitay authored and vlendec committed Aug 9, 2016
1 parent 3fcd937 commit afa41f0
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion source3/lib/dbwrap/dbwrap_watch.c
Original file line number Diff line number Diff line change
Expand Up @@ -534,7 +534,8 @@ static NTSTATUS dbwrap_watched_parse_record(
struct db_watched_ctx *ctx = talloc_get_type_abort(
db->private_data, struct db_watched_ctx);
struct dbwrap_watched_parse_record_state state = {
.parser = parser, private_data = private_data,
.parser = parser,
.private_data = private_data,
.deleted = false
};
NTSTATUS status;
Expand Down

0 comments on commit afa41f0

Please sign in to comment.