diff options
author | Volker Lendecke <vl@samba.org> | 2011-12-08 13:59:33 +0100 |
---|---|---|
committer | Volker Lendecke <vl@samba.org> | 2011-12-08 15:03:43 +0100 |
commit | d9e5368fcccf02164c2bdc0fc679b71e7cfa510f (patch) | |
tree | d0f52fe3fc1ec508c6caea60e03840c5c3614773 | |
parent | 5cda77d5996acb26648fbb0231ddc8b20e626cc0 (diff) | |
download | samba-d9e5368fcccf02164c2bdc0fc679b71e7cfa510f.tar.gz |
s3-dbwrap: Avoid an "else" by an early return
-rw-r--r-- | source3/lib/dbwrap/dbwrap.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/source3/lib/dbwrap/dbwrap.c b/source3/lib/dbwrap/dbwrap.c index 44344b96752..587fc8a4819 100644 --- a/source3/lib/dbwrap/dbwrap.c +++ b/source3/lib/dbwrap/dbwrap.c @@ -231,11 +231,11 @@ int dbwrap_parse_record(struct db_context *db, TDB_DATA key, parser = dbwrap_null_parser; } - if (db->parse_record) { - return db->parse_record(db, key, parser, private_data); - } else { - return dbwrap_fallback_parse_record(db, key, parser, private_data); + if (db->parse_record == NULL) { + return dbwrap_fallback_parse_record(db, key, parser, + private_data); } + return db->parse_record(db, key, parser, private_data); } int dbwrap_wipe(struct db_context *db) |