From 65c0fd59203a3d9c4cb685e3a739f29f6f0c4fd6 Mon Sep 17 00:00:00 2001 From: Michael Adam Date: Wed, 23 Apr 2008 14:55:51 +0200 Subject: winbindd_cache: simplify logic in new key length check for UA keys. This reduces indentation by combining common code paths, and wraps long lines. Holger: sorry, I could not resist. I think it is much easier to understand what is going on when we only have one check and determine the max allowed key length in advance. Michael (This used to be commit e489f3d988feafe35b486b31a9e60c2399e6a6e7) --- source3/winbindd/winbindd_cache.c | 23 +++++++++-------------- 1 file changed, 9 insertions(+), 14 deletions(-) (limited to 'source3/winbindd') diff --git a/source3/winbindd/winbindd_cache.c b/source3/winbindd/winbindd_cache.c index 5abd207e79..020338165b 100644 --- a/source3/winbindd/winbindd_cache.c +++ b/source3/winbindd/winbindd_cache.c @@ -3348,23 +3348,18 @@ struct key_val_struct { static int cache_traverse_validate_fn(TDB_CONTEXT *the_tdb, TDB_DATA kbuf, TDB_DATA dbuf, void *state) { int i; + unsigned int max_key_len = 1024; struct tdb_validation_status *v_state = (struct tdb_validation_status *)state; /* Paranoia check. */ - if (kbuf.dsize > 1024) { - if (strncmp("UA/", (const char *)kbuf.dptr, 3) == 0) { - unsigned int max_key_len = 1024*1024; - if (kbuf.dsize > max_key_len) { - DEBUG(0,("cache_traverse_validate_fn: UA key to large (%u) > (%u)\n\n", - (unsigned int)kbuf.dsize, (unsigned int)max_key_len )); - return 1; - } - } else { - - DEBUG(0,("cache_traverse_validate_fn: key length too large (%u) > 1024\n\n", - (unsigned int)kbuf.dsize )); - return 1; - } + if (strncmp("UA/", (const char *)kbuf.dptr, 3) == 0) { + max_key_len = 1024 * 1024; + } + if (kbuf.dsize > max_key_len) { + DEBUG(0, ("cache_traverse_validate_fn: key length too large: " + "(%u) > (%u)\n\n", + (unsigned int)kbuf.dsize, (unsigned int)max_key_len)); + return 1; } for (i = 0; key_val[i].keyname; i++) { -- cgit